From ff386383623a8dc809c20f2ab3e18bef4370d451 Mon Sep 17 00:00:00 2001 From: yowl Date: Fri, 13 Dec 2019 16:04:26 -0500 Subject: [PATCH] tiny comment typo. (#846) --- .../src/tools/Common/Internal/NativeFormat/NativeFormatWriter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/coreclr/src/tools/Common/Internal/NativeFormat/NativeFormatWriter.cs b/src/coreclr/src/tools/Common/Internal/NativeFormat/NativeFormatWriter.cs index 09f5555..899fb15 100644 --- a/src/coreclr/src/tools/Common/Internal/NativeFormat/NativeFormatWriter.cs +++ b/src/coreclr/src/tools/Common/Internal/NativeFormat/NativeFormatWriter.cs @@ -201,7 +201,7 @@ namespace Internal.NativeFormat public void WriteString(string s) { - // The actual bytes are only necessary for the final version during the growing plase + // The actual bytes are only necessary for the final version during the growing phase if (IsGrowing()) { byte[] bytes = _stringEncoding.GetBytes(s); -- 2.7.4