Update IdentityBuilder.cs <typeparam> tag definition

Updated the <typeparam> tag used for AddUserStore<T> to match the definition used for AddRoleStore<T>.
This commit is contained in:
Jamie West 2017-02-04 09:04:22 -08:00 committed by Hao Kung
parent 6e25a84993
commit b10c8ec0b8
1 changed files with 2 additions and 2 deletions

View File

@ -111,7 +111,7 @@ namespace Microsoft.AspNetCore.Identity
/// <summary>
/// Adds an <see cref="IUserStore{TUser}"/> for the <seealso cref="UserType"/>.
/// </summary>
/// <typeparam name="T">The user type whose password will be validated.</typeparam>
/// <typeparam name="T">The user type held in the store.</typeparam>
/// <returns>The current <see cref="IdentityBuilder"/> instance.</returns>
public virtual IdentityBuilder AddUserStore<T>() where T : class
{
@ -230,4 +230,4 @@ namespace Microsoft.AspNetCore.Identity
return AddScoped(managerType, typeof(TSignInManager));
}
}
}
}