From add0b0755d3d6ef50883b6e441706da1366f6118 Mon Sep 17 00:00:00 2001 From: Wilson Date: Fri, 6 Jul 2018 17:39:34 -0400 Subject: [PATCH] Fixed documentation typo (#1862) Corrected a typo on the XML documentation of the UserId property that made it read "... sets the of the ..." --- src/Stores/IdentityUserLogin.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Stores/IdentityUserLogin.cs b/src/Stores/IdentityUserLogin.cs index f2c6d165d0..c049e90343 100644 --- a/src/Stores/IdentityUserLogin.cs +++ b/src/Stores/IdentityUserLogin.cs @@ -27,8 +27,8 @@ namespace Microsoft.AspNetCore.Identity public virtual string ProviderDisplayName { get; set; } /// - /// Gets or sets the of the primary key of the user associated with this login. + /// Gets or sets the primary key of the user associated with this login. /// public virtual TKey UserId { get; set; } } -} \ No newline at end of file +}