Fix pointless warning when compiling Box2.cs
Showed warning "Missing XML comment for publicly visible type or member 'OpenTK.Box2.GetHashCode()' (CS1591) ", because there were five / instead of three / to indicate an XML comment.
This commit is contained in:
parent
99b9bf65f2
commit
9401b4dd84
1 changed files with 3 additions and 3 deletions
|
@ -190,9 +190,9 @@ namespace OpenTK
|
|||
return obj is Box2 && Equals((Box2) obj);
|
||||
}
|
||||
|
||||
///// <summary>
|
||||
///// Gets the hash code for this Box2.
|
||||
///// </summary>
|
||||
/// <summary>
|
||||
/// Gets the hash code for this Box2.
|
||||
/// </summary>
|
||||
public override int GetHashCode()
|
||||
{
|
||||
unchecked
|
||||
|
|
Loading…
Reference in a new issue