From 5f838208e820e91b87d4c51b3da12809cdb9b0e8 Mon Sep 17 00:00:00 2001 From: Robert Miles Date: Thu, 25 Jan 2018 16:40:11 -0500 Subject: [PATCH] Fix IUserRoleStore docs (#1594) --- src/Core/IUserRoleStore.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Core/IUserRoleStore.cs b/src/Core/IUserRoleStore.cs index d8c5725385..e4ef13bcb7 100644 --- a/src/Core/IUserRoleStore.cs +++ b/src/Core/IUserRoleStore.cs @@ -14,7 +14,7 @@ namespace Microsoft.AspNetCore.Identity public interface IUserRoleStore : IUserStore where TUser : class { /// - /// Add a the specified to the named role. + /// Add the specified to the named role. /// /// The user to add to the named role. /// The name of the role to add the user to. @@ -23,7 +23,7 @@ namespace Microsoft.AspNetCore.Identity Task AddToRoleAsync(TUser user, string roleName, CancellationToken cancellationToken); /// - /// Add a the specified from the named role. + /// Remove the specified from the named role. /// /// The user to remove the named role from. /// The name of the role to remove. @@ -40,7 +40,7 @@ namespace Microsoft.AspNetCore.Identity Task> GetRolesAsync(TUser user, CancellationToken cancellationToken); /// - /// Returns a flag indicating whether the specified is a member of the give named role. + /// Returns a flag indicating whether the specified is a member of the given named role. /// /// The user whose role membership should be checked. /// The name of the role to be checked. @@ -61,4 +61,4 @@ namespace Microsoft.AspNetCore.Identity /// Task> GetUsersInRoleAsync(string roleName, CancellationToken cancellationToken); } -} \ No newline at end of file +}