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:
UnknownShadow200 2017-03-15 23:25:44 +11:00 committed by GitHub
parent 99b9bf65f2
commit 9401b4dd84

View file

@ -190,9 +190,9 @@ namespace OpenTK
return obj is Box2 && Equals((Box2) obj); return obj is Box2 && Equals((Box2) obj);
} }
///// <summary> /// <summary>
///// Gets the hash code for this Box2. /// Gets the hash code for this Box2.
///// </summary> /// </summary>
public override int GetHashCode() public override int GetHashCode()
{ {
unchecked unchecked