diff --git a/src/Microsoft.AspNetCore.Identity/UserManager.cs b/src/Microsoft.AspNetCore.Identity/UserManager.cs
index 103e794a57..ae875bceb1 100644
--- a/src/Microsoft.AspNetCore.Identity/UserManager.cs
+++ b/src/Microsoft.AspNetCore.Identity/UserManager.cs
@@ -1289,11 +1289,11 @@ namespace Microsoft.AspNetCore.Identity
}
///
- /// Gets the user, if any, associated with the specified, normalized email address.
+ /// Gets the user, if any, associated with the normalized value of the specified email address.
///
- /// The normalized email address to return the user for.
+ /// The email address to return the user for.
///
- /// The task object containing the results of the asynchronous lookup operation, the user if any associated with the specified normalized email address.
+ /// The task object containing the results of the asynchronous lookup operation, the user, if any, associated with a normalized value of the specified email address.
///
public virtual Task FindByEmailAsync(string email)
{
@@ -2291,4 +2291,4 @@ namespace Microsoft.AspNetCore.Identity
}
}
-}
\ No newline at end of file
+}