Skip to content

Commit e130357

Browse files
authored
nit: doc comment typo (#58945)
* nit: doc comment typo * nit: Typo in code comment
1 parent 3755011 commit e130357

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Framework/AspNetCoreAnalyzers/src/Analyzers/RouteEmbeddedLanguage/FrameworkParametersCompletionProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ public override async Task ProvideCompletionsAsync(CompletionContext context)
160160
methodNode = delegateExpression;
161161

162162
// Incomplete inline delegate syntax is very messy and arguments are mixed together.
163-
// Examine tokens to figure out wether the current token is the argument name.
163+
// Examine tokens to figure out whether the current token is the argument name.
164164
var previous = token.GetPreviousToken();
165165
if (previous.IsKind(SyntaxKind.CommaToken) ||
166166
previous.IsKind(SyntaxKind.OpenParenToken) ||

src/Security/Authentication/OpenIdConnect/src/OpenIdConnectOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ public bool MapInboundClaims
410410
public bool UseSecurityTokenValidator { get; set; }
411411

412412
/// <summary>
413-
/// Controls wether the handler should push authorization parameters on the
413+
/// Controls whether the handler should push authorization parameters on the
414414
/// backchannel before redirecting to the identity provider. See <see
415415
/// href="https://tools.ietf.org/html/9126"/>.
416416
/// </summary>

0 commit comments

Comments
 (0)