diff --git a/samples/CookieSessionSample/Startup.cs b/samples/CookieSessionSample/Startup.cs
index bea9ae79d8..941911ad73 100644
--- a/samples/CookieSessionSample/Startup.cs
+++ b/samples/CookieSessionSample/Startup.cs
@@ -24,7 +24,7 @@ namespace CookieSessionSample
{
options.AutomaticAuthentication = true;
options.SessionStore = new MemoryCacheTicketStore();
- }));
+ });
app.Run(async context =>
{
diff --git a/src/Microsoft.AspNet.Authentication.OAuth/Events/OAuthEvents.cs b/src/Microsoft.AspNet.Authentication.OAuth/Events/OAuthEvents.cs
index 357f2dfa9c..424c982805 100644
--- a/src/Microsoft.AspNet.Authentication.OAuth/Events/OAuthEvents.cs
+++ b/src/Microsoft.AspNet.Authentication.OAuth/Events/OAuthEvents.cs
@@ -12,12 +12,12 @@ namespace Microsoft.AspNet.Authentication.OAuth
public class OAuthEvents : IOAuthEvents
{
///
- /// Gets or sets the function that is invoked when the Authenticated method is invoked.
+ /// Gets or sets the function that is invoked when the CreatingTicket method is invoked.
///
public Func OnCreatingTicket { get; set; } = context => Task.FromResult(0);
///
- /// Gets or sets the function that is invoked when the ReturnEndpoint method is invoked.
+ /// Gets or sets the function that is invoked when the SigningIn method is invoked.
///
public Func OnSigningIn { get; set; } = context => Task.FromResult(0);