From 52b082f6c6c093e7a98e902d3b06f0ceab24c3b7 Mon Sep 17 00:00:00 2001 From: Devon Jones Date: Thu, 3 Aug 2017 18:03:44 -0800 Subject: [PATCH] fix incomplete sentence (#3882) --- aspnetcore/security/authentication/identity.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/security/authentication/identity.md b/aspnetcore/security/authentication/identity.md index 3e7e3731ac..24971719e5 100644 --- a/aspnetcore/security/authentication/identity.md +++ b/aspnetcore/security/authentication/identity.md @@ -93,7 +93,7 @@ In this topic, you'll learn how to use ASP.NET Core Identity to add functionalit [!code-csharp[Main](identity/sample/src/ASPNET-IdentityDemo/Controllers/AccountController.cs?name=logout&highlight=7)] - The preceding code above the `_signInManager.SignOutAsync` method. The `SignOutAsync` method clears the user's claims stored in a cookie. + The preceding code above calls the `_signInManager.SignOutAsync` method. The `SignOutAsync` method clears the user's claims stored in a cookie. 6. Configuration.