From 1c3f89024028d22a16cf6a874007970ef514a6c6 Mon Sep 17 00:00:00 2001 From: Artak <34246760+mkArtakMSFT@users.noreply.github.com> Date: Thu, 4 Apr 2019 15:05:47 -0700 Subject: [PATCH] Fixing comment grammer Addresses https://github.com/aspnet/AspNetCore/issues/9053 --- .../Web.ProjectTemplates/content/StarterWeb-CSharp/Startup.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ProjectTemplates/Web.ProjectTemplates/content/StarterWeb-CSharp/Startup.cs b/src/ProjectTemplates/Web.ProjectTemplates/content/StarterWeb-CSharp/Startup.cs index 7beef5f92b..90a7bed7e6 100644 --- a/src/ProjectTemplates/Web.ProjectTemplates/content/StarterWeb-CSharp/Startup.cs +++ b/src/ProjectTemplates/Web.ProjectTemplates/content/StarterWeb-CSharp/Startup.cs @@ -102,7 +102,7 @@ namespace Company.WebApplication1 context.HandleResponse(); // Suppress the exception return Task.CompletedTask; }, - // If your application needs to do authenticate single users, add your user validation below. + // If your application needs to authenticate single users, add your user validation below. //OnTokenValidated = context => //{ // return myUserValidationLogic(context.Ticket.Principal);