Corrected typos in XML Docs in MessageReceivedContext for events in JwtBearer and OpenIdConnect middlesware. (#1336)

This commit is contained in:
richstokoe 2017-07-24 16:49:49 +01:00 committed by Chris Ross
parent 644f34e90d
commit 827852efdb
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ namespace Microsoft.AspNetCore.Authentication.JwtBearer
: base(context, scheme, options) { }
/// <summary>
/// Bearer Token. This will give application an opportunity to retrieve token from an alternation location.
/// Bearer Token. This will give the application an opportunity to retrieve a token from an alternative location.
/// </summary>
public string Token { get; set; }
}

View File

@ -18,7 +18,7 @@ namespace Microsoft.AspNetCore.Authentication.OpenIdConnect
public OpenIdConnectMessage ProtocolMessage { get; set; }
/// <summary>
/// Bearer Token. This will give application an opportunity to retrieve token from an alternation location.
/// Bearer Token. This will give the application an opportunity to retrieve a token from an alternative location.
/// </summary>
public string Token { get; set; }
}