fix XML documentation of RemoveClaimAsync

Fixes documentation of parameter "claim" in RemoveClaimAsync(TRole role, Claim claim)
This commit is contained in:
Lee Calabrese 2016-04-25 16:14:39 +09:00 committed by Hao Kung
parent 7b870f8e64
commit 13a08e2a8a
1 changed files with 2 additions and 2 deletions

View File

@ -356,7 +356,7 @@ namespace Microsoft.AspNetCore.Identity
/// Removes a claim from a role.
/// </summary>
/// <param name="role">The role to remove the claim from.</param>
/// <param name="claim">The claim to add.</param>
/// <param name="claim">The claim to remove.</param>
/// <returns>
/// The <see cref="Task"/> that represents the asynchronous operation, containing the <see cref="IdentityResult"/>
/// of the operation.
@ -464,4 +464,4 @@ namespace Microsoft.AspNetCore.Identity
}
}
}
}
}