From 165c48f11b1892d47585c17c6ef1db91b3c33ddc Mon Sep 17 00:00:00 2001 From: Matthias Huygelen Date: Tue, 4 Jun 2024 10:43:18 +0200 Subject: [PATCH] Fix SetLockoutEnabledAsync comments SetLockoutEnabledAsync sets the flag indicating if a user can be locked out, the comment insinuated that this is the actual locked out flag. --- src/Identity/Extensions.Core/src/UserManager.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Identity/Extensions.Core/src/UserManager.cs b/src/Identity/Extensions.Core/src/UserManager.cs index 33c5eaaf62bd..cca2005d10d0 100644 --- a/src/Identity/Extensions.Core/src/UserManager.cs +++ b/src/Identity/Extensions.Core/src/UserManager.cs @@ -1735,11 +1735,11 @@ public virtual async Task IsLockedOutAsync(TUser user) } /// - /// Sets a flag indicating whether the specified is locked out, + /// Sets a flag indicating whether the specified can be locked out, /// as an asynchronous operation. /// /// The user whose locked out status should be set. - /// Flag indicating whether the user is locked out or not. + /// Flag indicating whether the user can be locked out or not. /// /// The that represents the asynchronous operation, the of the operation ///