fix incomplete sentence (#3882)

pull/3883/head
Devon Jones 2017-08-03 18:03:44 -08:00 committed by Scott Addie
parent 8941d2a4f5
commit 52b082f6c6
1 changed files with 1 additions and 1 deletions

View File

@ -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.