Fixing minor typo
This commit is contained in:
parent
b1d1d85aee
commit
6b65ed2d83
|
|
@ -15,7 +15,7 @@ namespace Microsoft.AspNetCore.Identity.EntityFrameworkCore
|
||||||
/// Initializes a new instance of <see cref="IdentityRole"/>.
|
/// Initializes a new instance of <see cref="IdentityRole"/>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// The Id property is initialized to from a new GUID string value.
|
/// The Id property is initialized to form a new GUID string value.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
public IdentityRole()
|
public IdentityRole()
|
||||||
{
|
{
|
||||||
|
|
@ -27,7 +27,7 @@ namespace Microsoft.AspNetCore.Identity.EntityFrameworkCore
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="roleName">The role name.</param>
|
/// <param name="roleName">The role name.</param>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// The Id property is initialized to from a new GUID string value.
|
/// The Id property is initialized to form a new GUID string value.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
public IdentityRole(string roleName) : this()
|
public IdentityRole(string roleName) : this()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@ namespace Microsoft.AspNetCore.Identity.EntityFrameworkCore
|
||||||
/// Initializes a new instance of <see cref="IdentityUser"/>.
|
/// Initializes a new instance of <see cref="IdentityUser"/>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// The Id property is initialized to from a new GUID string value.
|
/// The Id property is initialized to form a new GUID string value.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
public IdentityUser()
|
public IdentityUser()
|
||||||
{
|
{
|
||||||
|
|
@ -27,7 +27,7 @@ namespace Microsoft.AspNetCore.Identity.EntityFrameworkCore
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="userName">The user name.</param>
|
/// <param name="userName">The user name.</param>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// The Id property is initialized to from a new GUID string value.
|
/// The Id property is initialized to form a new GUID string value.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
public IdentityUser(string userName) : this()
|
public IdentityUser(string userName) : this()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue