Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Microsoft.AspNet.Identity.EntityFramework/UserStore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class UserStore<TUser> :
IUserStore<TUser> where TUser : IdentityUser
{
/// <summary>
/// Default constuctor which uses a new instance of a default EntityyDbContext
/// Default constuctor which uses a new instance of a default IdentityDbContext
/// </summary>
public UserStore()
: this(new IdentityDbContext())
Expand Down Expand Up @@ -1013,4 +1013,4 @@ internal static bool TryMatchAndGetId(Expression<Func<TUser, bool>> filter, out
}
}
}
}
}