From a55a3724765b19f04d2f258a69aa16c6b3d47800 Mon Sep 17 00:00:00 2001 From: Hao Kung Date: Tue, 22 Sep 2015 16:21:40 -0700 Subject: [PATCH] Add period --- .../Events/ICookieAuthenticationEvents.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Microsoft.AspNet.Authentication.Cookies/Events/ICookieAuthenticationEvents.cs b/src/Microsoft.AspNet.Authentication.Cookies/Events/ICookieAuthenticationEvents.cs index 6011ea8774..9458b4f243 100644 --- a/src/Microsoft.AspNet.Authentication.Cookies/Events/ICookieAuthenticationEvents.cs +++ b/src/Microsoft.AspNet.Authentication.Cookies/Events/ICookieAuthenticationEvents.cs @@ -32,25 +32,25 @@ namespace Microsoft.AspNet.Authentication.Cookies Task SignedIn(CookieSignedInContext context); /// - /// Called when a SignOut causes a redirect in the cookie middleware + /// Called when a SignOut causes a redirect in the cookie middleware. /// /// Contains information about the event Task RedirectToLogout(CookieRedirectContext context); /// - /// Called when a SignIn causes a redirect in the cookie middleware + /// Called when a SignIn causes a redirect in the cookie middleware. /// /// Contains information about the event Task RedirectToLogin(CookieRedirectContext context); /// - /// Called when redirecting back to the return url in the cookie middleware + /// Called when redirecting back to the return url in the cookie middleware. /// /// Contains information about the event Task RedirectToReturnUrl(CookieRedirectContext context); /// - /// Called when an access denied causes a redirect in the cookie middleware + /// Called when an access denied causes a redirect in the cookie middleware. /// /// Contains information about the event Task RedirectToAccessDenied(CookieRedirectContext context);