diff --git a/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceScope.cs b/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceScope.cs index 803e96d9fd0687..148394fbb34219 100644 --- a/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceScope.cs +++ b/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceScope.cs @@ -10,7 +10,7 @@ namespace Microsoft.Extensions.DependencyInjection /// /// /// The method ends the scope lifetime. Once Dispose - /// is called, any scoped services that have been resolved from + /// is called, any scoped services and any transient services that have been resolved from /// will be /// disposed. /// diff --git a/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceScopeFactory.cs b/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceScopeFactory.cs index 7b3b97ec722d5d..372be9881b10e7 100644 --- a/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceScopeFactory.cs +++ b/src/libraries/Microsoft.Extensions.DependencyInjection.Abstractions/src/IServiceScopeFactory.cs @@ -16,9 +16,9 @@ public interface IServiceScopeFactory /// /// /// An controlling the - /// lifetime of the scope. Once this is disposed, any scoped services that have been resolved - /// from the - /// will also be disposed. + /// lifetime of the scope. Once this is disposed, any scoped services and any transient services + /// that have been resolved from the + /// will also be disposed. /// IServiceScope CreateScope(); }