From 388fea2ed6510bcf29c19d30572d37b45e16f3e1 Mon Sep 17 00:00:00 2001 From: hangy Date: Thu, 17 Aug 2017 10:10:35 +0200 Subject: [PATCH] Fix ResetPasswordAsync documentation This seems like it should be the other way around. --- src/Microsoft.Extensions.Identity.Core/UserManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.Extensions.Identity.Core/UserManager.cs b/src/Microsoft.Extensions.Identity.Core/UserManager.cs index 7c0cf87188..7956c06da5 100644 --- a/src/Microsoft.Extensions.Identity.Core/UserManager.cs +++ b/src/Microsoft.Extensions.Identity.Core/UserManager.cs @@ -854,7 +854,7 @@ namespace Microsoft.AspNetCore.Identity /// /// The user whose password should be reset. /// The password reset token to verify. - /// The new password to set if reset token verification fails. + /// The new password to set if reset token verification succeeds. /// /// The that represents the asynchronous operation, containing the /// of the operation.