Typos (dotnet/corert#6605)
authorJohn Doe <github.john.doe@outlook.com>
Thu, 22 Nov 2018 22:23:08 +0000 (14:23 -0800)
committerJan Kotas <jkotas@microsoft.com>
Fri, 30 Nov 2018 06:41:32 +0000 (22:41 -0800)
* accross -> across

* adress -> address

* Appartment -> Apartment

* persective -> perspective

* paramaterized -> parameterized

* Langage -> Language

* miminum -> minimum

* Curret -> Current

* currnet -> current

* definately -> definitely

Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
src/System.Private.CoreLib/shared/System/Diagnostics/Tracing/ActivityTracker.cs
src/System.Private.CoreLib/shared/System/Globalization/Calendar.cs
src/System.Private.CoreLib/shared/System/Globalization/CultureData.Unix.cs
src/System.Private.CoreLib/shared/System/Globalization/DateTimeParse.cs
src/System.Private.CoreLib/shared/System/Globalization/JulianCalendar.cs
src/System.Private.CoreLib/shared/System/Globalization/LocaleData.Unix.cs

index d9f9f08..16874d8 100644 (file)
@@ -450,7 +450,7 @@ namespace System.Diagnostics.Tracing
                 byte* endPtr = ptr + 12;
                 ptr += whereToAddId;
                 if (endPtr <= ptr)
-                    return 13;                // 12 means we might exactly fit, 13 means we definately did not fit
+                    return 13;                // 12 means we might exactly fit, 13 means we definitely did not fit
 
                 if (0 < id && id <= (uint)NumberListCodes.LastImmediateValue && !overflow)
                     WriteNibble(ref ptr, endPtr, id);
index 66a6369..f839581 100644 (file)
@@ -173,7 +173,7 @@ namespace System.Globalization
 
 
         /*=================================CurrentEraValue==========================
-        **Action: This is used to convert CurretEra(0) to an appropriate era value.
+        **Action: This is used to convert CurrentEra(0) to an appropriate era value.
         **Returns:
         **Arguments:
         **Exceptions:
index 029057c..d870742 100644 (file)
@@ -353,7 +353,7 @@ namespace System.Globalization
 
         private static string GetThreeLetterWindowsLanguageName(string cultureName)
         {
-            string langName = LocaleData.GetThreeLetterWindowsLangageName(cultureName);
+            string langName = LocaleData.GetThreeLetterWindowsLanguageName(cultureName);
             return langName == null ? "ZZZ" /* default lang name */ : langName; 
         }
 
index c33e5b5..d36ead3 100644 (file)
@@ -678,7 +678,7 @@ new DS[] { DS.ERROR, DS.TX_NNN,  DS.TX_NNN,  DS.TX_NNN,  DS.ERROR,   DS.ERROR,
                             raw.year = tokenValue;
                             //
                             // If we have number which has 3 or more digits (like "001" or "0001"),
-                            // we assume this number is a year. Save the currnet raw.numCount in
+                            // we assume this number is a year. Save the current raw.numCount in
                             // raw.year.
                             //
                             switch (sep = str.GetSeparatorToken(dtfi, out indexBeforeSeparator, out charBeforeSeparator))
@@ -882,7 +882,7 @@ new DS[] { DS.ERROR, DS.TX_NNN,  DS.TX_NNN,  DS.TX_NNN,  DS.ERROR,   DS.ERROR,
                             raw.year = tokenValue;
                             //
                             // If we have number which has 3 or more digits (like "001" or "0001"),
-                            // we assume this number is a year. Save the currnet raw.numCount in
+                            // we assume this number is a year. Save the current raw.numCount in
                             // raw.year.
                             //
                             switch (sep = str.GetSeparatorToken(dtfi, out indexBeforeSeparator, out charBeforeSeparator))
index a1ffbeb..a61cf97 100644 (file)
@@ -128,7 +128,7 @@ namespace System.Globalization
         {
             if (year == 1 && month == 1)
             {
-                // The mimimum supported Julia date is Julian 0001/01/03.
+                // The minimum supported Julia date is Julian 0001/01/03.
                 if (day < 3)
                 {
                     throw new ArgumentOutOfRangeException(null,
index ccf1078..2bd3d79 100644 (file)
@@ -4466,7 +4466,7 @@ namespace System.Globalization
             return s_nameIndexToNumericData[index * NUMERIC_LOCALE_DATA_COUNT_PER_ROW + (int) part];
         }
         
-        internal static string GetThreeLetterWindowsLangageName(string cultureName)
+        internal static string GetThreeLetterWindowsLanguageName(string cultureName)
         {
             int index = SearchCultureName(cultureName);
             if (index < 0)