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 5e1b9ae9a31c9fe13b541f70a70866c9f7378311..aaac975ec8877ca76dedd473f2b03a038d2c2f06 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.