Fixed a typo in ValueType.cs (#34854)
authorSergio Pedri <sergio0694@live.com>
Sat, 11 Apr 2020 15:44:34 +0000 (17:44 +0200)
committerGitHub <noreply@github.com>
Sat, 11 Apr 2020 15:44:34 +0000 (11:44 -0400)
src/coreclr/src/System.Private.CoreLib/src/System/ValueType.cs

index 453afa3..636b3bc 100644 (file)
@@ -72,7 +72,7 @@ namespace System
 
         /*=================================GetHashCode==================================
         **Action: Our algorithm for returning the hashcode is a little bit complex.  We look
-        **        for the first non-static field and get it's hashcode.  If the type has no
+        **        for the first non-static field and get its hashcode.  If the type has no
         **        non-static fields, we return the hashcode of the type.  We can't take the
         **        hashcode of a static member because if that member is of the same type as
         **        the original type, we'll end up in an infinite loop.