Fix summary comment (#23702)

It seems like this should say "locked out", rather than "logged out".
This commit is contained in:
Steve Gordon 2020-07-08 22:13:11 +01:00 committed by GitHub
parent 763a18ee56
commit f83ce075ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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";
}
}
}
}