typo (dotnet/corert#4274)
authorgithub-john-doe <github.john.doe@outlook.com>
Fri, 4 Aug 2017 22:12:03 +0000 (15:12 -0700)
committerJan Kotas <jkotas@microsoft.com>
Sat, 5 Aug 2017 01:27:30 +0000 (18:27 -0700)
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
src/mscorlib/shared/System/Collections/ICollection.cs
src/mscorlib/shared/System/Convert.cs
src/mscorlib/shared/System/Globalization/DateTimeFormatInfo.cs
src/mscorlib/shared/System/Globalization/HijriCalendar.cs

index 80ea092..8fd6a96 100644 (file)
@@ -29,7 +29,7 @@ namespace System.Collections
         // implementation of a collection, and use one of the internal objects
         // found in that code.
         //
-        // In the absense of a static Synchronized method on a collection, 
+        // In the absence of a static Synchronized method on a collection, 
         // the expected usage for SyncRoot would look like this:
         // 
         // ICollection col = ...
index 576f78f..6b1d499 100644 (file)
@@ -84,7 +84,7 @@ namespace System
     // of the conversion method.
 
     // Constant representing the database null value. This value is used in
-    // database applications to indicate the absense of a known value. Note
+    // database applications to indicate the absence of a known value. Note
     // that Value.DBNull is NOT the same as a null object reference, which is
     // represented by Value.Empty.
     //
index 5d3239e..c27478e 100644 (file)
@@ -31,7 +31,7 @@ namespace System.Globalization
     // This is an internal flag.
     //
     // This flag is different from MonthNameStyles because this flag
-    // can be expanded to accomodate parsing behaviors like CJK month names
+    // can be expanded to accommodate parsing behaviors like CJK month names
     // or alternative month names, etc.
 
     [Flags]
@@ -2645,7 +2645,7 @@ namespace System.Globalization
                 {
                     String str;
                     // We have to call public methods here to work with inherited DTFI.
-                    // Insert the month name first, so that they are at the front of abbrevaited
+                    // Insert the month name first, so that they are at the front of abbreviated
                     // month names.
                     str = InvariantInfo.GetMonthName(i);
                     InsertHash(temp, str, TokenType.MonthToken, i);
index 125248a..1da8dfa 100644 (file)
@@ -303,7 +303,7 @@ namespace System.Globalization
             //
             HijriYear = (int)(((NumDays - 227013) * 30) / 10631) + 1;
 
-            long daysToHijriYear = DaysUpToHijriYear(HijriYear);            // The absoulte date for HijriYear
+            long daysToHijriYear = DaysUpToHijriYear(HijriYear);            // The absolute date for HijriYear
             long daysOfHijriYear = GetDaysInYear(HijriYear, CurrentEra);    // The number of days for (HijriYear+1) year.
 
             if (NumDays < daysToHijriYear)