From f83ce075ca2285f267d6e8e17f96561c8ab6579d Mon Sep 17 00:00:00 2001 From: Steve Gordon <sgordon@hotmail.co.uk> Date: Wed, 8 Jul 2020 22:13:11 +0100 Subject: [PATCH] Fix summary comment (#23702) It seems like this should say "locked out", rather than "logged out". --- src/Identity/Extensions.Core/src/SignInResult.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Identity/Extensions.Core/src/SignInResult.cs b/src/Identity/Extensions.Core/src/SignInResult.cs index faae170c3b8..e8e4c3dc50e 100644 --- a/src/Identity/Extensions.Core/src/SignInResult.cs +++ b/src/Identity/Extensions.Core/src/SignInResult.cs @@ -52,7 +52,7 @@ namespace Microsoft.AspNetCore.Identity /// <summary> /// Returns a <see cref="SignInResult"/> that represents a sign-in attempt that failed because - /// the user was logged out. + /// the user was locked out. /// </summary> /// <returns>A <see cref="SignInResult"/> that represents sign-in attempt that failed due to the /// user being locked out.</returns> @@ -86,4 +86,4 @@ namespace Microsoft.AspNetCore.Identity Succeeded ? "Succeeded" : "Failed"; } } -} \ No newline at end of file +} -- GitLab