Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEgor Bogatov <egorbo@gmail.com>2018-12-19 16:43:47 +0300
committerMarek Safar <marek.safar@gmail.com>2018-12-19 21:08:44 +0300
commitc4ae51646152de0af32b2c85538b6e7317faa7f8 (patch)
treefb8f461bf4ee5f67d5af14768a6e927d5ac8323d
parent7e8bf23824b3b95101fb42ad756bbed5eac178bf (diff)
Update ISOWeek.cs
-rw-r--r--src/System.Private.CoreLib/shared/System/Globalization/ISOWeek.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/System.Private.CoreLib/shared/System/Globalization/ISOWeek.cs b/src/System.Private.CoreLib/shared/System/Globalization/ISOWeek.cs
index 27c163de1..c93e178a9 100644
--- a/src/System.Private.CoreLib/shared/System/Globalization/ISOWeek.cs
+++ b/src/System.Private.CoreLib/shared/System/Globalization/ISOWeek.cs
@@ -89,7 +89,7 @@ namespace System.Globalization
{
throw new ArgumentOutOfRangeException(nameof(year), SR.ArgumentOutOfRange_Year);
}
-#if __MonoCS__ // mcs doesn't support local funtions
+#if __MonoCS__ // mcs doesn't support local functions
Func<int, int> P = y =>
#else
int P(int y) =>