Update xmldoc for SetNormalizedUserNameAsync

The parameter name specified in the xmldoc didn't match the actual parameter name.
This commit is contained in:
Daniel Lo Nigro 2015-08-08 12:35:23 -07:00 committed by Hao Kung
parent eb4aaa5800
commit bc8cf1f7b6
1 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ namespace Microsoft.AspNet.Identity
/// Sets the given normalized name for the specified <paramref name="user"/>, as an asynchronous operation.
/// </summary>
/// <param name="user">The user whose name should be set.</param>
/// <param name="userName">The normalized name to set.</param>
/// <param name="normalizedName">The normalized name to set.</param>
/// <param name="cancellationToken">The <see cref="CancellationToken"/> used to propagate notifications that the operation should be canceled.</param>
/// <returns>The <see cref="Task"/> that represents the asynchronous operation.</returns>
Task SetNormalizedUserNameAsync(TUser user, string normalizedName, CancellationToken cancellationToken);
@ -99,4 +99,4 @@ namespace Microsoft.AspNet.Identity
/// </returns>
Task<TUser> FindByNameAsync(string normalizedUserName, CancellationToken cancellationToken);
}
}
}