Merge pull request #1161 from Nordic-Dev/dev

Fixing minor typo
This commit is contained in:
Barry Dorrans 2017-04-19 12:10:21 -07:00 committed by GitHub
commit d4669453ba
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()
{