Skip to content

Commit 866d6b8

Browse files
Fix a code comment in AuthenticationOptions.cs (#62108)
1 parent c912eee commit 866d6b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Http/Authentication.Abstractions/src/AuthenticationOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public void AddScheme(string name, Action<AuthenticationSchemeBuilder> configure
9191
public string? DefaultForbidScheme { get; set; }
9292

9393
/// <summary>
94-
/// If true, SignIn should throw if attempted with a user is not authenticated.
94+
/// If true, SignIn should throw if attempted with a user who is not authenticated.
9595
/// A user is considered authenticated if <see cref="ClaimsIdentity.IsAuthenticated"/> returns <see langword="true" /> for the <see cref="ClaimsPrincipal"/> associated with the HTTP request.
9696
/// </summary>
9797
public bool RequireAuthenticatedSignIn { get; set; } = true;

0 commit comments

Comments
 (0)