Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ public override async Task ProvideCompletionsAsync(CompletionContext context)
methodNode = delegateExpression;

// Incomplete inline delegate syntax is very messy and arguments are mixed together.
// Examine tokens to figure out wether the current token is the argument name.
// Examine tokens to figure out whether the current token is the argument name.
var previous = token.GetPreviousToken();
if (previous.IsKind(SyntaxKind.CommaToken) ||
previous.IsKind(SyntaxKind.OpenParenToken) ||
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ public bool MapInboundClaims
public bool UseSecurityTokenValidator { get; set; }

/// <summary>
/// Controls wether the handler should push authorization parameters on the
/// Controls whether the handler should push authorization parameters on the
/// backchannel before redirecting to the identity provider. See <see
/// href="https://tools.ietf.org/html/9126"/>.
/// </summary>
Expand Down
Loading