summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Doe <github.john.doe@outlook.com>2018-10-04 17:25:37 -0700
committerJan Kotas <jkotas@microsoft.com>2018-10-06 15:51:28 -0700
commit6f66b1e068e83b694d92e9c2103fc7292a6e03e7 (patch)
tree63950cc8d6bed79e118ec5144ae06c925e56a721
parent8e880c667e999aa7d9da8d7ea30c2db92e419ba0 (diff)
downloadcoreclr-6f66b1e068e83b694d92e9c2103fc7292a6e03e7.tar.gz
coreclr-6f66b1e068e83b694d92e9c2103fc7292a6e03e7.tar.bz2
coreclr-6f66b1e068e83b694d92e9c2103fc7292a6e03e7.zip
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 <dotnet-bot@microsoft.com>
-rw-r--r--src/System.Private.CoreLib/shared/System/Globalization/CalendricalCalculationsHelper.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/System.Private.CoreLib/shared/System/Globalization/CalendricalCalculationsHelper.cs b/src/System.Private.CoreLib/shared/System/Globalization/CalendricalCalculationsHelper.cs
index e0a3072b22..241019a0bc 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)
{