Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
/ corefx Public archive

Commit

Permalink
typo: Double word "this" (#36273)
Browse files Browse the repository at this point in the history
  • Loading branch information
nschonni authored and davidsh committed Mar 24, 2019
1 parent aa67d40 commit 97e6256
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,7 @@ public override bool IsLeapMonth(int year, int month, int era)

/// <summary>
/// Returns the leap month in a calendar year of the specified era. This method returns 0
/// if this this year is not a leap year.
/// if this year is not a leap year.
/// </summary>
public override int GetLeapMonth(int year, int era)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace System.Configuration
{
// Although in Whidbey this class contain just one property, but we still do this this way,
// Although in Whidbey this class contains just one property, but we still do it this way,
// instead of exposing a Validator property in ConfigurationElement, because if we need
// another property in the future we'll expand this ElementProperty class rather than adding a
// new overridable on ConfigurationElement
Expand All @@ -19,4 +19,4 @@ public ConfigurationElementProperty(ConfigurationValidatorBase validator)

public ConfigurationValidatorBase Validator { get; }
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -778,7 +778,7 @@ public async Task PostAsync_ManyDifferentRequestHeaders_SentCorrectly()
// System.InvalidCastException: "Unable to cast object of type 'System.Object[]' to type 'System.Net.Http.WinHttpRequestState'"
// This appears to be due to adding the Expect: 100-continue header, which causes winhttp
// to fail with a "The parameter is incorrect" error, which in turn causes the request to
// be torn down, and in doing so, we this this during disposal of the SafeWinHttpHandle.
// be torn down, and in doing so, we handle this during disposal of the SafeWinHttpHandle.
return;
}

Expand Down

0 comments on commit 97e6256

Please sign in to comment.