Corrected typo

This commit is contained in:
ByteBlast
2015-03-25 13:44:19 +00:00
parent 3f1454421c
commit 5322c9310c
3 changed files with 3 additions and 3 deletions

View File

@@ -17,7 +17,7 @@ namespace Owin.Security.Providers.Foursquare.Provider
/// </summary>
/// <param name="context">The OWIN environment</param>
/// <param name="user">The JSON-serialized user</param>
/// <param name="accessToken">GitHub Access token</param>
/// <param name="accessToken">Foursquare Access token</param>
public FoursquareAuthenticatedContext(IOwinContext context, JObject user, string accessToken)
: base(context)
{

View File

@@ -28,7 +28,7 @@ namespace Owin.Security.Providers.Foursquare.Provider
public Func<FoursquareReturnEndpointContext, Task> OnReturnEndpoint { get; set; }
/// <summary>
/// Invoked whenever GitHub succesfully authenticates a user
/// Invoked whenever Foursquare succesfully authenticates a user
/// </summary>
/// <param name="context">Contains information about the login session as well as the user <see cref="System.Security.Claims.ClaimsIdentity"/>.</param>
/// <returns>A <see cref="Task"/> representing the completed operation.</returns>

View File

@@ -8,7 +8,7 @@ namespace Owin.Security.Providers.Foursquare.Provider
public interface IFoursquareAuthenticationProvider
{
/// <summary>
/// Invoked whenever GitHub succesfully authenticates a user
/// Invoked whenever Foursquare succesfully authenticates a user
/// </summary>
/// <param name="context">Contains information about the login session as well as the user <see cref="System.Security.Claims.ClaimsIdentity"/>.</param>
/// <returns>A <see cref="Task"/> representing the completed operation.</returns>