Fixing minor typo

This commit is contained in:
Alec Papierniak 2017-04-10 17:33:29 -05:00
parent b1d1d85aee
commit 6b65ed2d83
2 changed files with 4 additions and 4 deletions

View File

@ -15,7 +15,7 @@ namespace Microsoft.AspNetCore.Identity.EntityFrameworkCore
/// Initializes a new instance of <see cref="IdentityRole"/>.
/// </summary>
/// <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>
public IdentityRole()
{
@ -27,7 +27,7 @@ namespace Microsoft.AspNetCore.Identity.EntityFrameworkCore
/// </summary>
/// <param name="roleName">The role name.</param>
/// <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>
public IdentityRole(string roleName) : this()
{

View File

@ -15,7 +15,7 @@ namespace Microsoft.AspNetCore.Identity.EntityFrameworkCore
/// Initializes a new instance of <see cref="IdentityUser"/>.
/// </summary>
/// <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>
public IdentityUser()
{
@ -27,7 +27,7 @@ namespace Microsoft.AspNetCore.Identity.EntityFrameworkCore
/// </summary>
/// <param name="userName">The user name.</param>
/// <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>
public IdentityUser(string userName) : this()
{