diff --git a/src/Microsoft.AspNetCore.Authentication/AuthenticationServiceCollectionExtensions.cs b/src/Microsoft.AspNetCore.Authentication/AuthenticationServiceCollectionExtensions.cs
index 9ce76d7e62..2aa320ae21 100644
--- a/src/Microsoft.AspNetCore.Authentication/AuthenticationServiceCollectionExtensions.cs
+++ b/src/Microsoft.AspNetCore.Authentication/AuthenticationServiceCollectionExtensions.cs
@@ -15,7 +15,7 @@ namespace Microsoft.Extensions.DependencyInjection
/// Adds authentication services to the specified .
///
/// The to add services to.
- /// A reference to this instance after the operation has completed.
+ /// The so that additional calls can be chained.
public static IServiceCollection AddAuthentication(this IServiceCollection services)
{
if (services == null)
@@ -33,7 +33,7 @@ namespace Microsoft.Extensions.DependencyInjection
///
/// The to add services to.
/// An action delegate to configure the provided .
- /// A reference to this instance after the operation has completed.
+ /// The so that additional calls can be chained.
public static IServiceCollection AddAuthentication(this IServiceCollection services, Action configureOptions)
{
if (services == null)
diff --git a/src/Microsoft.AspNetCore.Authorization/AuthorizationServiceCollectionExtensions.cs b/src/Microsoft.AspNetCore.Authorization/AuthorizationServiceCollectionExtensions.cs
index d03f9ed746..c92be6232e 100644
--- a/src/Microsoft.AspNetCore.Authorization/AuthorizationServiceCollectionExtensions.cs
+++ b/src/Microsoft.AspNetCore.Authorization/AuthorizationServiceCollectionExtensions.cs
@@ -17,7 +17,7 @@ namespace Microsoft.Extensions.DependencyInjection
/// Adds authorization services to the specified .
///
/// The to add services to.
- /// A reference to this instance after the operation has completed.
+ /// The so that additional calls can be chained.
public static IServiceCollection AddAuthorization(this IServiceCollection services)
{
if (services == null)
@@ -36,7 +36,7 @@ namespace Microsoft.Extensions.DependencyInjection
///
/// The to add services to.
/// An action delegate to configure the provided .
- /// A reference to this instance after the operation has completed.
+ /// The so that additional calls can be chained.
public static IServiceCollection AddAuthorization(this IServiceCollection services, Action configure)
{
if (services == null)