diff --git a/src/Core/IdentityServiceCollectionExtensions.cs b/src/Core/IdentityServiceCollectionExtensions.cs
index bf9bf08e6b..3dcbd68119 100644
--- a/src/Core/IdentityServiceCollectionExtensions.cs
+++ b/src/Core/IdentityServiceCollectionExtensions.cs
@@ -13,7 +13,8 @@ namespace Microsoft.Extensions.DependencyInjection
public static class IdentityServiceCollectionExtensions
{
///
- /// Adds and configures the identity system for the specified User and Role types.
+ /// Adds and configures the identity system for the specified User type. Role services are not added
+ /// by default but can be added with .
///
/// The type representing a User in the system.
/// The services available in the application.
@@ -22,7 +23,8 @@ namespace Microsoft.Extensions.DependencyInjection
=> services.AddIdentityCore(o => { });
///
- /// Adds and configures the identity system for the specified User and Role types.
+ /// Adds and configures the identity system for the specified User type. Role services are not added by default
+ /// but can be added with .
///
/// The type representing a User in the system.
/// The services available in the application.
@@ -52,4 +54,4 @@ namespace Microsoft.Extensions.DependencyInjection
return new IdentityBuilder(typeof(TUser), services);
}
}
-}
\ No newline at end of file
+}