From c1b8f3abf39a4856e5f48a20a59ecc14580947a0 Mon Sep 17 00:00:00 2001 From: Hao Kung Date: Wed, 17 Aug 2016 12:46:01 -0700 Subject: [PATCH] Fix doc comment --- src/Microsoft.AspNetCore.Identity/IQueryableUserStore.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.AspNetCore.Identity/IQueryableUserStore.cs b/src/Microsoft.AspNetCore.Identity/IQueryableUserStore.cs index 69e3f76324..68b39b8fd2 100644 --- a/src/Microsoft.AspNetCore.Identity/IQueryableUserStore.cs +++ b/src/Microsoft.AspNetCore.Identity/IQueryableUserStore.cs @@ -6,7 +6,7 @@ using System.Linq; namespace Microsoft.AspNetCore.Identity { /// - /// Provides an abstraction for querying roles in a User store. + /// Provides an abstraction for querying users in a User store. /// /// The type encapsulating a user. public interface IQueryableUserStore : IUserStore where TUser : class