From 6e4ed79e9a6fa9ebbf0a5555c4d373ffa7732e6a Mon Sep 17 00:00:00 2001 From: Joseph Musser Date: Fri, 14 Sep 2018 07:35:26 -0400 Subject: =?UTF-8?q?Fixed=20typo=20=E2=80=98defualt=E2=80=99=20(#19955)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: dotnet-bot --- src/System.Private.CoreLib/shared/System/Globalization/DateTimeParse.cs | 2 +- .../shared/System/Threading/ManualResetEventSlim.cs | 2 +- 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. 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); } -- cgit v1.2.3