Skip to content

Commit

Permalink
fix grammar (#1326)
Browse files Browse the repository at this point in the history
* fix grammar

* add a sentence
  • Loading branch information
jennyf19 authored Jul 21, 2021
1 parent e3ee4f6 commit 92265bb
Show file tree
Hide file tree
Showing 2 changed files with 126 additions and 2,533 deletions.
16 changes: 8 additions & 8 deletions src/Microsoft.Identity.Web/ITokenAcquisition.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ namespace Microsoft.Identity.Web
public interface ITokenAcquisition
{
/// <summary>
/// Typically used from an ASP.NET Core web app or web API controller, this method gets an access token
/// for a downstream API on behalf of the user account which claims are provided in the <see cref="HttpContext.User"/>
/// Typically used from an ASP.NET Core web app or web API controller. This method gets an access token
/// for a downstream API on behalf of the user account for which the claims are provided in the <see cref="HttpContext.User"/>
/// member of the controller's <see cref="HttpContext"/> parameter.
/// </summary>
/// <param name="scopes">Scopes to request for the downstream API to call.</param>
Expand Down Expand Up @@ -46,8 +46,8 @@ Task<string> GetAccessTokenForUserAsync(
}

/// <summary>
/// Typically used from an ASP.NET Core web app or web API controller, this method gets an access token
/// for a downstream API on behalf of the user account which claims are provided in the <see cref="HttpContext.User"/>
/// Typically used from an ASP.NET Core web app or web API controller. This method gets an access token
/// for a downstream API on behalf of the user account for which the claims are provided in the <see cref="HttpContext.User"/>
/// member of the controller's <see cref="HttpContext"/> parameter.
/// </summary>
/// <param name="scopes">Scopes to request for the downstream API to call.</param>
Expand All @@ -70,8 +70,8 @@ Task<string> GetAccessTokenForUserAsync(
TokenAcquisitionOptions? tokenAcquisitionOptions = null);

/// <summary>
/// Typically used from an ASP.NET Core web app or web API controller, this method gets an access token
/// for a downstream API on behalf of the user account which claims are provided in the <see cref="HttpContext.User"/>
/// Typically used from an ASP.NET Core web app or web API controller. This method gets an access token
/// for a downstream API on behalf of the user account for which the claims are provided in the <see cref="HttpContext.User"/>
/// member of the controller's <see cref="HttpContext"/> parameter.
/// </summary>
/// <param name="scopes">Scopes to request for the downstream API to call.</param>
Expand Down Expand Up @@ -100,8 +100,8 @@ Task<AuthenticationResult> GetAuthenticationResultForUserAsync(
}

/// <summary>
/// Typically used from an ASP.NET Core web app or web API controller, this method gets an access token
/// for a downstream API on behalf of the user account which claims are provided in the <see cref="HttpContext.User"/>
/// Typically used from an ASP.NET Core web app or web API controller. This method gets an access token
/// for a downstream API on behalf of the user account for which the claims are provided in the <see cref="HttpContext.User"/>
/// member of the controller's <see cref="HttpContext"/> parameter.
/// </summary>
/// <param name="scopes">Scopes to request for the downstream API to call.</param>
Expand Down
Loading

0 comments on commit 92265bb

Please sign in to comment.