From f73f668e2be8829fafaa61e129dc20ba7fb2c18c Mon Sep 17 00:00:00 2001 From: Dennis Daume Date: Wed, 6 Jul 2016 20:52:17 +0200 Subject: [PATCH] Fix a typo in the SignInManager docs --- src/Microsoft.AspNetCore.Identity/SignInManager.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Microsoft.AspNetCore.Identity/SignInManager.cs b/src/Microsoft.AspNetCore.Identity/SignInManager.cs index d317b62cda..37b129adbf 100644 --- a/src/Microsoft.AspNetCore.Identity/SignInManager.cs +++ b/src/Microsoft.AspNetCore.Identity/SignInManager.cs @@ -506,7 +506,7 @@ namespace Microsoft.AspNetCore.Identity /// Configures the redirect URL and user identifier for the specified external login . /// /// The provider to configure. - /// The external login URL users should be redirected to during the login glow. + /// The external login URL users should be redirected to during the login flow. /// The current user's identifier, which will be used to provide CSRF protection. /// A configured . public virtual AuthenticationProperties ConfigureExternalAuthenticationProperties(string provider, string redirectUrl, string userId = null) @@ -629,4 +629,4 @@ namespace Microsoft.AspNetCore.Identity public string LoginProvider { get; set; } } } -} \ No newline at end of file +}