From f0de6b1a878ffca541b09e61f3c0046ea840b311 Mon Sep 17 00:00:00 2001 From: PersianAstroman Date: Sat, 10 Nov 2018 18:47:18 +0330 Subject: [PATCH] Correcting a typo in UserStore.cs Correcting a typo in XML documentation of UserStore constructor. --- src/Microsoft.AspNet.Identity.EntityFramework/UserStore.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Microsoft.AspNet.Identity.EntityFramework/UserStore.cs b/src/Microsoft.AspNet.Identity.EntityFramework/UserStore.cs index 2087cb8..0b28869 100644 --- a/src/Microsoft.AspNet.Identity.EntityFramework/UserStore.cs +++ b/src/Microsoft.AspNet.Identity.EntityFramework/UserStore.cs @@ -23,7 +23,7 @@ public class UserStore : IUserStore where TUser : IdentityUser { /// - /// Default constuctor which uses a new instance of a default EntityyDbContext + /// Default constuctor which uses a new instance of a default IdentityDbContext /// public UserStore() : this(new IdentityDbContext()) @@ -1013,4 +1013,4 @@ internal static bool TryMatchAndGetId(Expression> filter, out } } } -} \ No newline at end of file +}