From 7403418d2b2e199a50f48825f626905a15045d19 Mon Sep 17 00:00:00 2001 From: Hao Kung Date: Mon, 10 Jul 2017 09:21:56 -0700 Subject: [PATCH] Clean up doc comments --- .../AuthenticationOptions.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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; } }