Typos (dotnet/corefx#32625)
authorJohn Doe <github.john.doe@outlook.com>
Fri, 5 Oct 2018 00:25:37 +0000 (17:25 -0700)
committerJan Kotas <jkotas@microsoft.com>
Sat, 6 Oct 2018 22:51:28 +0000 (15:51 -0700)
* Obejct -> Object

* Oberserver -> Observer

* objetcs -> objects

* observeable -> observable

* obsolated -> obsoleted

* occour -> occur

* occurance -> occurrence

* occures -> occurs

* occuring -> occurring

* occurrance -> occurrence

Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
src/System.Private.CoreLib/shared/System/Globalization/CalendricalCalculationsHelper.cs

index e0a3072..241019a 100644 (file)
@@ -393,7 +393,7 @@ namespace System.Globalization
 
             double approx = EstimatePrior(LongitudeSpring, MiddayAtPersianObservationSite(date));
             long lowerBoundNewYearDay = (long)Math.Floor(approx) - 1;
-            long upperBoundNewYearDay = lowerBoundNewYearDay + 3; // estimate is generally within a day of the actual occurrance (at the limits, the error expands, since the calculations rely on the mean tropical year which changes...)
+            long upperBoundNewYearDay = lowerBoundNewYearDay + 3; // estimate is generally within a day of the actual occurrence (at the limits, the error expands, since the calculations rely on the mean tropical year which changes...)
             long day = lowerBoundNewYearDay;
             for (; day != upperBoundNewYearDay; ++day)
             {