From 1cfbcc3f957a85f6719323b52148d31d51a2ccb0 Mon Sep 17 00:00:00 2001 From: Nathan Ricci Date: Wed, 2 Oct 2019 13:14:48 -0400 Subject: [PATCH] Spelling corrections. Commit migrated from https://github.com/mono/mono/commit/d0461a9d8d662cc686b841d186a0379e6fca8fc7 --- src/mono/netcore/System.Private.CoreLib/src/System/GC.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mono/netcore/System.Private.CoreLib/src/System/GC.cs b/src/mono/netcore/System.Private.CoreLib/src/System/GC.cs index 96049a7..03f2ba3 100644 --- a/src/mono/netcore/System.Private.CoreLib/src/System/GC.cs +++ b/src/mono/netcore/System.Private.CoreLib/src/System/GC.cs @@ -245,7 +245,7 @@ namespace System internal static T[] AllocateUninitializedArray (int length) { // Mono only does explicit zeroning if the array is to big for the nursery, but less than 1 Mb - 4 kb. - // If it is bigger than that, we grab memroy directly from the OS which comes pre zeroed. + // If it is bigger than that, we grab memoroy directly from the OS which comes pre-zeroed. // Experimentation shows that if we just skip the zeroing in this case, we do not save a measurable // amount of time. So we just allocate the normal way here. // Revist if we change LOS implementation. -- 2.7.4