Fix doc comment

This commit is contained in:
Hao Kung 2016-08-17 12:46:01 -07:00
parent 526d9f0076
commit c1b8f3abf3
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ using System.Linq;
namespace Microsoft.AspNetCore.Identity
{
/// <summary>
/// Provides an abstraction for querying roles in a User store.
/// Provides an abstraction for querying users in a User store.
/// </summary>
/// <typeparam name="TUser">The type encapsulating a user.</typeparam>
public interface IQueryableUserStore<TUser> : IUserStore<TUser> where TUser : class