From 1f5f120e4692e7599858daa21d53438a86d4a3b6 Mon Sep 17 00:00:00 2001 From: Brendan Ridenour Date: Mon, 26 May 2025 14:56:22 -0400 Subject: [PATCH] Fix a code comment in AuthenticationOptions.cs --- .../Authentication.Abstractions/src/AuthenticationOptions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Http/Authentication.Abstractions/src/AuthenticationOptions.cs b/src/Http/Authentication.Abstractions/src/AuthenticationOptions.cs index f4e0f9293394..a9a95b84a1d9 100644 --- a/src/Http/Authentication.Abstractions/src/AuthenticationOptions.cs +++ b/src/Http/Authentication.Abstractions/src/AuthenticationOptions.cs @@ -91,7 +91,7 @@ public void AddScheme(string name, Action configure public string? DefaultForbidScheme { get; set; } /// - /// If true, SignIn should throw if attempted with a user is not authenticated. + /// If true, SignIn should throw if attempted with a user who is not authenticated. /// A user is considered authenticated if returns for the associated with the HTTP request. /// public bool RequireAuthenticatedSignIn { get; set; } = true;