From 9401b4dd842b68a7794aee3a2fbd35a85cab6a44 Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Wed, 15 Mar 2017 23:25:44 +1100 Subject: [PATCH] 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. --- src/OpenTK/Math/Box2.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/OpenTK/Math/Box2.cs b/src/OpenTK/Math/Box2.cs index bdb6ca5..fdfd2ba 100644 --- a/src/OpenTK/Math/Box2.cs +++ b/src/OpenTK/Math/Box2.cs @@ -190,9 +190,9 @@ namespace OpenTK return obj is Box2 && Equals((Box2) obj); } - ///// - ///// Gets the hash code for this Box2. - ///// + /// + /// Gets the hash code for this Box2. + /// public override int GetHashCode() { unchecked -- 2.7.4