Updates referencesource to .NET 4.7
[mono.git] / mcs / class / referencesource / mscorlib / system / array.cs
index 7c767692fef9860facfa00e85ad8d5930fb954df..3c678360dfc5ead76993bd3253a40779452a4054 100644 (file)
@@ -618,7 +618,7 @@ namespace System {
 
         // We impose limits on maximum array lenght in each dimension to allow efficient 
         // implementation of advanced range check elimination in future.
-        // Keep in [....] with vm\gcscan.cpp and HashHelpers.MaxPrimeArrayLength.
+        // Keep in sync with vm\gcscan.cpp and HashHelpers.MaxPrimeArrayLength.
         // The constants are defined in this method: inline SIZE_T MaxArrayLength(SIZE_T componentSize) from gcscan
         // We have different max sizes for arrays with elements of size 1 for backwards compatibility
         internal const int MaxArrayLength = 0X7FEFFFFF;