From bc8cf1f7b664074eee45d20fad9573fcc912e144 Mon Sep 17 00:00:00 2001 From: Daniel Lo Nigro Date: Sat, 8 Aug 2015 12:35:23 -0700 Subject: [PATCH] Update xmldoc for SetNormalizedUserNameAsync The parameter name specified in the xmldoc didn't match the actual parameter name. --- src/Microsoft.AspNet.Identity/IUserStore.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Microsoft.AspNet.Identity/IUserStore.cs b/src/Microsoft.AspNet.Identity/IUserStore.cs index 3643464ccb..605f32dd16 100644 --- a/src/Microsoft.AspNet.Identity/IUserStore.cs +++ b/src/Microsoft.AspNet.Identity/IUserStore.cs @@ -50,7 +50,7 @@ namespace Microsoft.AspNet.Identity /// Sets the given normalized name for the specified , as an asynchronous operation. /// /// The user whose name should be set. - /// The normalized name to set. + /// The normalized name to set. /// The used to propagate notifications that the operation should be canceled. /// The that represents the asynchronous operation. Task SetNormalizedUserNameAsync(TUser user, string normalizedName, CancellationToken cancellationToken); @@ -99,4 +99,4 @@ namespace Microsoft.AspNet.Identity /// Task FindByNameAsync(string normalizedUserName, CancellationToken cancellationToken); } -} \ No newline at end of file +}