Update typo in comment in CultureInfo.cs
authorStephen Toub <stoub@microsoft.com>
Mon, 16 Sep 2019 19:39:40 +0000 (15:39 -0400)
committerGitHub <noreply@github.com>
Mon, 16 Sep 2019 19:39:40 +0000 (15:39 -0400)
Commit migrated from https://github.com/dotnet/coreclr/commit/cb84762fd8f92959f964b6458ef2dc41092d5c2c

src/libraries/System.Private.CoreLib/src/System/Globalization/CultureInfo.cs

index f476638..bc93105 100644 (file)
@@ -1016,7 +1016,7 @@ namespace System.Globalization
             {
                 // Usually when we access CultureInfo.DateTimeFormat first time, we create the DateTimeFormatInfo object
                 // using CultureInfo.Calendar. i.e. CultureInfo.DateTimeInfo.Calendar == CultureInfo.calendar.
-                // When cloning CultureInfo, if we know this still the case CultureInfo.DateTimeInfo.Calendar == CultureInfo.calendar
+                // When cloning CultureInfo, if we know it's still the case that CultureInfo.DateTimeInfo.Calendar == CultureInfo.calendar
                 // then we can keep the same behavior for the cloned object and no need to create another calendar object.
                 ci._calendar = ci.DateTimeFormat.Calendar;
             }