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);