From 40ff01d27361420223a7eaed358c7b359744d951 Mon Sep 17 00:00:00 2001 From: Mauro Ghini Date: Mon, 8 Jul 2019 14:30:41 +0200 Subject: [PATCH] fixed typo (#13176) --- aspnetcore/security/authentication/scaffold-identity.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/security/authentication/scaffold-identity.md b/aspnetcore/security/authentication/scaffold-identity.md index 4951d837dd..6f6e26d199 100644 --- a/aspnetcore/security/authentication/scaffold-identity.md +++ b/aspnetcore/security/authentication/scaffold-identity.md @@ -158,7 +158,7 @@ The default Identity is replaced in the following code: [!code-csharp[](scaffold-identity/sample/StartupFull.cs?name=snippet2)] -The following the code sets the [LoginPath](/dotnet/api/microsoft.aspnetcore.authentication.cookies.cookieauthenticationoptions.loginpath), [LogoutPath](/dotnet/api/microsoft.aspnetcore.authentication.cookies.cookieauthenticationoptions.logoutpath), and [AccessDeniedPath](/dotnet/api/microsoft.aspnetcore.authentication.cookies.cookieauthenticationoptions.accessdeniedpath): +The following code sets the [LoginPath](/dotnet/api/microsoft.aspnetcore.authentication.cookies.cookieauthenticationoptions.loginpath), [LogoutPath](/dotnet/api/microsoft.aspnetcore.authentication.cookies.cookieauthenticationoptions.logoutpath), and [AccessDeniedPath](/dotnet/api/microsoft.aspnetcore.authentication.cookies.cookieauthenticationoptions.accessdeniedpath): [!code-csharp[](scaffold-identity/sample/StartupFull.cs?name=snippet3)]