Fix ResetPasswordAsync documentation

This seems like it should be the other way around.
This commit is contained in:
hangy 2017-08-17 10:10:35 +02:00 committed by Hao Kung
parent 33281499ed
commit 388fea2ed6
1 changed files with 1 additions and 1 deletions

View File

@ -854,7 +854,7 @@ namespace Microsoft.AspNetCore.Identity
/// </summary>
/// <param name="user">The user whose password should be reset.</param>
/// <param name="token">The password reset token to verify.</param>
/// <param name="newPassword">The new password to set if reset token verification fails.</param>
/// <param name="newPassword">The new password to set if reset token verification succeeds.</param>
/// <returns>
/// The <see cref="Task"/> that represents the asynchronous operation, containing the <see cref="IdentityResult"/>
/// of the operation.