From 13a08e2a8a055087a884246281514a85d1ab7221 Mon Sep 17 00:00:00 2001 From: Lee Calabrese Date: Mon, 25 Apr 2016 16:14:39 +0900 Subject: [PATCH] fix XML documentation of RemoveClaimAsync Fixes documentation of parameter "claim" in RemoveClaimAsync(TRole role, Claim claim) --- src/Microsoft.AspNetCore.Identity/RoleManager.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Microsoft.AspNetCore.Identity/RoleManager.cs b/src/Microsoft.AspNetCore.Identity/RoleManager.cs index 3b54ee1e7e..70080106ca 100644 --- a/src/Microsoft.AspNetCore.Identity/RoleManager.cs +++ b/src/Microsoft.AspNetCore.Identity/RoleManager.cs @@ -356,7 +356,7 @@ namespace Microsoft.AspNetCore.Identity /// Removes a claim from a role. /// /// The role to remove the claim from. - /// The claim to add. + /// The claim to remove. /// /// The that represents the asynchronous operation, containing the /// of the operation. @@ -464,4 +464,4 @@ namespace Microsoft.AspNetCore.Identity } } } -} \ No newline at end of file +}