Fix pointless warning when compiling Box2.cs
authorUnknownShadow200 <unknownshadow200@gmail.com>
Wed, 15 Mar 2017 12:25:44 +0000 (23:25 +1100)
committerGitHub <noreply@github.com>
Wed, 15 Mar 2017 12:25:44 +0000 (23:25 +1100)
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.

src/OpenTK/Math/Box2.cs

index bdb6ca5..fdfd2ba 100644 (file)
@@ -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