From ce791ab9f55963b3aa64dc8a4e949857bdb8c2c4 Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Sun, 24 Mar 2019 16:30:06 -0400 Subject: [PATCH] typo: Double word "as" (dotnet/corefxdotnet/coreclr#36277) Signed-off-by: dotnet-bot Commit migrated from https://github.com/dotnet/coreclr/commit/2f4a7564beb6f8c1f4929504ee2221953d25fc39 --- .../System.Private.CoreLib/src/System/Text/UTF8Encoding.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libraries/System.Private.CoreLib/src/System/Text/UTF8Encoding.cs b/src/libraries/System.Private.CoreLib/src/System/Text/UTF8Encoding.cs index 5e1b9ae9a31..aaac975ec88 100644 --- a/src/libraries/System.Private.CoreLib/src/System/Text/UTF8Encoding.cs +++ b/src/libraries/System.Private.CoreLib/src/System/Text/UTF8Encoding.cs @@ -5,7 +5,7 @@ // The worker functions in this file was optimized for performance. If you make changes // you should use care to consider all of the interesting cases. -// The code of all worker functions in this file is written twice: Once as as a slow loop, and the +// The code of all worker functions in this file is written twice: Once as a slow loop, and the // second time as a fast loop. The slow loops handles all special cases, throws exceptions, etc. // The fast loops attempts to blaze through as fast as possible with optimistic range checks, // processing multiple characters at a time, and falling back to the slow loop for all special cases. -- GitLab