diff --git a/Owin.Security.Providers/Foursquare/Provider/FoursquareAuthenticatedContext.cs b/Owin.Security.Providers/Foursquare/Provider/FoursquareAuthenticatedContext.cs index d7a5ae1..be337f1 100644 --- a/Owin.Security.Providers/Foursquare/Provider/FoursquareAuthenticatedContext.cs +++ b/Owin.Security.Providers/Foursquare/Provider/FoursquareAuthenticatedContext.cs @@ -17,7 +17,7 @@ namespace Owin.Security.Providers.Foursquare.Provider /// /// The OWIN environment /// The JSON-serialized user - /// GitHub Access token + /// Foursquare Access token public FoursquareAuthenticatedContext(IOwinContext context, JObject user, string accessToken) : base(context) { diff --git a/Owin.Security.Providers/Foursquare/Provider/FoursquareAuthenticationProvider.cs b/Owin.Security.Providers/Foursquare/Provider/FoursquareAuthenticationProvider.cs index e1e682d..8890a96 100644 --- a/Owin.Security.Providers/Foursquare/Provider/FoursquareAuthenticationProvider.cs +++ b/Owin.Security.Providers/Foursquare/Provider/FoursquareAuthenticationProvider.cs @@ -28,7 +28,7 @@ namespace Owin.Security.Providers.Foursquare.Provider public Func OnReturnEndpoint { get; set; } /// - /// Invoked whenever GitHub succesfully authenticates a user + /// Invoked whenever Foursquare succesfully authenticates a user /// /// Contains information about the login session as well as the user . /// A representing the completed operation. diff --git a/Owin.Security.Providers/Foursquare/Provider/IFoursquareAuthenticationProvider.cs b/Owin.Security.Providers/Foursquare/Provider/IFoursquareAuthenticationProvider.cs index 3cc8d38..c6f79f3 100644 --- a/Owin.Security.Providers/Foursquare/Provider/IFoursquareAuthenticationProvider.cs +++ b/Owin.Security.Providers/Foursquare/Provider/IFoursquareAuthenticationProvider.cs @@ -8,7 +8,7 @@ namespace Owin.Security.Providers.Foursquare.Provider public interface IFoursquareAuthenticationProvider { /// - /// Invoked whenever GitHub succesfully authenticates a user + /// Invoked whenever Foursquare succesfully authenticates a user /// /// Contains information about the login session as well as the user . /// A representing the completed operation.