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:
authorJoseph Musser <me@jnm2.com>2018-09-14 14:35:26 +0300
committerJan Kotas <jkotas@microsoft.com>2018-09-17 06:53:24 +0300
commit6e4ed79e9a6fa9ebbf0a5555c4d373ffa7732e6a (patch)
tree16e59e2489b803afb57fef00b82454237b4d3c33
parent5b63d01b33849aace08fd371ab53996977165930 (diff)
Fixed typo ‘defualt’ (#19955)
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
-rw-r--r--src/System.Private.CoreLib/shared/System/Globalization/DateTimeParse.cs2
-rw-r--r--src/System.Private.CoreLib/shared/System/Threading/ManualResetEventSlim.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/System.Private.CoreLib/shared/System/Globalization/DateTimeParse.cs b/src/System.Private.CoreLib/shared/System/Globalization/DateTimeParse.cs
index b9da90078..8d703ea98 100644
--- a/src/System.Private.CoreLib/shared/System/Globalization/DateTimeParse.cs
+++ b/src/System.Private.CoreLib/shared/System/Globalization/DateTimeParse.cs
@@ -5936,7 +5936,7 @@ new DS[] { DS.ERROR, DS.TX_NNN, DS.TX_NNN, DS.TX_NNN, DS.ERROR, DS.ERROR,
internal int Month;
internal int Day;
//
- // Set time defualt to 00:00:00.
+ // Set time default to 00:00:00.
//
internal int Hour;
internal int Minute;
diff --git a/src/System.Private.CoreLib/shared/System/Threading/ManualResetEventSlim.cs b/src/System.Private.CoreLib/shared/System/Threading/ManualResetEventSlim.cs
index 2f57aa750..dc65f6f16 100644
--- a/src/System.Private.CoreLib/shared/System/Threading/ManualResetEventSlim.cs
+++ b/src/System.Private.CoreLib/shared/System/Threading/ManualResetEventSlim.cs
@@ -176,7 +176,7 @@ namespace System.Threading
/// to nonsignaled.</param>
public ManualResetEventSlim(bool initialState)
{
- // Specify the defualt spin count, and use default spin if we're
+ // Specify the default spin count, and use default spin if we're
// on a multi-processor machine. Otherwise, we won't.
Initialize(initialState, SpinWait.SpinCountforSpinBeforeWait);
}