From 6f66b1e068e83b694d92e9c2103fc7292a6e03e7 Mon Sep 17 00:00:00 2001 From: John Doe Date: Thu, 4 Oct 2018 17:25:37 -0700 Subject: [PATCH] Typos (dotnet/corefx#32625) * 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 --- .../shared/System/Globalization/CalendricalCalculationsHelper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/System.Private.CoreLib/shared/System/Globalization/CalendricalCalculationsHelper.cs b/src/System.Private.CoreLib/shared/System/Globalization/CalendricalCalculationsHelper.cs index e0a3072..241019a 100644 --- a/src/System.Private.CoreLib/shared/System/Globalization/CalendricalCalculationsHelper.cs +++ b/src/System.Private.CoreLib/shared/System/Globalization/CalendricalCalculationsHelper.cs @@ -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) { -- 2.7.4