From 5480aa182bad3fb3b729a0169d0462873331e306 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Ros?= Date: Tue, 13 Sep 2016 16:06:52 -0700 Subject: [PATCH] Clearing up FindByEmailAsync usage Makes it explicit that the parameter can be any email, but the query will be based on the normalized value. --- src/Microsoft.AspNetCore.Identity/UserManager.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 +}