From 9e0c93b64bd16c951602e21e68d88c0edc921931 Mon Sep 17 00:00:00 2001 From: Hao Kung Date: Fri, 4 Jan 2019 17:32:26 -0800 Subject: [PATCH] Update UserManager docs for spelling/clarity (#5952) Port of https://github.com/aspnet/Identity/pull/1003 --- src/Identity/Extensions.Core/src/UserManager.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Identity/Extensions.Core/src/UserManager.cs b/src/Identity/Extensions.Core/src/UserManager.cs index ff5ac02ab8..e5569a65aa 100644 --- a/src/Identity/Extensions.Core/src/UserManager.cs +++ b/src/Identity/Extensions.Core/src/UserManager.cs @@ -1332,7 +1332,7 @@ namespace Microsoft.AspNetCore.Identity } /// - /// Returns a flag indicating whether the specified is a member of the give named role. + /// Returns a flag indicating whether the specified is a member of the given named role. /// /// The user whose role membership should be checked. /// The name of the role to be checked. @@ -1931,7 +1931,7 @@ namespace Microsoft.AspNetCore.Identity } /// - /// Retrieves a flag indicating whether user lockout can enabled for the specified user. + /// Retrieves a flag indicating whether user lockout can be enabled for the specified user. /// /// The user whose ability to be locked out should be returned. /// @@ -1950,7 +1950,7 @@ namespace Microsoft.AspNetCore.Identity /// /// Gets the last a user's last lockout expired, if any. - /// Any time in the past should be indicates a user is not locked out. + /// A time value in the past indicates a user is not currently locked out. /// /// The user whose lockout date should be retrieved. ///