From 6b6b21a5bf1ff831301bdd9559ec36d4eaeac6e2 Mon Sep 17 00:00:00 2001 From: Aliaksei Maniuk Date: Tue, 15 Mar 2016 13:11:18 -0400 Subject: [PATCH] Minor fix in description for LockoutEnabled property. --- .../IdentityUser.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Microsoft.AspNetCore.Identity.EntityFrameworkCore/IdentityUser.cs b/src/Microsoft.AspNetCore.Identity.EntityFrameworkCore/IdentityUser.cs index 2e87a0932a..8dd5ee7123 100644 --- a/src/Microsoft.AspNetCore.Identity.EntityFrameworkCore/IdentityUser.cs +++ b/src/Microsoft.AspNetCore.Identity.EntityFrameworkCore/IdentityUser.cs @@ -127,9 +127,9 @@ namespace Microsoft.AspNetCore.Identity.EntityFrameworkCore public virtual DateTimeOffset? LockoutEnd { get; set; } /// - /// Gets or sets a flag indicating if this user is locked out. + /// Gets or sets a flag indicating if the user could be locked out. /// - /// True if the user is locked out, otherwise false. + /// True if the user could be locked out, otherwise false. public virtual bool LockoutEnabled { get; set; } ///