Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/referencesource/mscorlib/system/object.cs')
-rw-r--r--mcs/class/referencesource/mscorlib/system/object.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/referencesource/mscorlib/system/object.cs b/mcs/class/referencesource/mscorlib/system/object.cs
index 6c27df75d51..2d9f91e839b 100644
--- a/mcs/class/referencesource/mscorlib/system/object.cs
+++ b/mcs/class/referencesource/mscorlib/system/object.cs
@@ -86,7 +86,7 @@ public class Object
// Based on the contents of the object, the hash function will return a suitable
// value with a relatively random distribution over the various inputs.
//
- // The default implementation returns the sync block index for this instance.
+ // The default implementation returns the [....] block index for this instance.
// Calling it on the same object multiple times will return the same value, so
// it will technically meet the needs of a hash function, but it's less than ideal.
// Objects (& especially value classes) should override this method.