Skip to content

Commit

Permalink
Tabs vs. spaces (dotnet#18740)
Browse files Browse the repository at this point in the history
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
  • Loading branch information
dotnet-maestro-bot authored and jkotas committed Jul 2, 2018
1 parent c80466d commit 1310065
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ namespace System.Threading
public partial class EventWaitHandle : WaitHandle
{
public EventWaitHandle(bool initialState, EventResetMode mode) :
this(initialState, mode, null, out _)
{
}
this(initialState, mode, null, out _)
{
}

public EventWaitHandle(bool initialState, EventResetMode mode, string name) :
this(initialState, mode, name, out _)
Expand Down

0 comments on commit 1310065

Please sign in to comment.