diff --git a/src/Microsoft.AspNetCore.Authentication.Abstractions/AuthenticationOptions.cs b/src/Microsoft.AspNetCore.Authentication.Abstractions/AuthenticationOptions.cs
index d39da26b69..2781a35757 100644
--- a/src/Microsoft.AspNetCore.Authentication.Abstractions/AuthenticationOptions.cs
+++ b/src/Microsoft.AspNetCore.Authentication.Abstractions/AuthenticationOptions.cs
@@ -61,32 +61,32 @@ namespace Microsoft.AspNetCore.Authentication
});
///
- /// Used by as the fallback default scheme for all the other defaults.
+ /// Used as the fallback default scheme for all the other defaults.
///
public string DefaultScheme { get; set; }
///
- /// Used by as the default scheme by .
+ /// Used as the default scheme by .
///
public string DefaultAuthenticateScheme { get; set; }
///
- /// Used by as the default scheme by .
+ /// Used as the default scheme by .
///
public string DefaultSignInScheme { get; set; }
///
- /// Used by as the default scheme by .
+ /// Used as the default scheme by .
///
public string DefaultSignOutScheme { get; set; }
///
- /// Used by as the default scheme by .
+ /// Used as the default scheme by .
///
public string DefaultChallengeScheme { get; set; }
///
- /// Used by as the default scheme by .
+ /// Used as the default scheme by .
///
public string DefaultForbidScheme { get; set; }
}