Fixed documentation typo (#1862)

Corrected a typo on the XML documentation of the UserId property that made it read "... sets the of the ..."
This commit is contained in:
Wilson 2018-07-06 17:39:34 -04:00 committed by Hao Kung
parent 32a08fea5d
commit 87cfd540ce
1 changed files with 2 additions and 2 deletions

View File

@ -27,8 +27,8 @@ namespace Microsoft.AspNetCore.Identity
public virtual string ProviderDisplayName { get; set; }
/// <summary>
/// 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.
/// </summary>
public virtual TKey UserId { get; set; }
}
}
}