diff --git a/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs b/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs index 22224ab96a401..ca5f9fa07bd10 100644 --- a/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs +++ b/src/libraries/Microsoft.Extensions.Options/src/OptionsServiceCollectionExtensions.cs @@ -40,7 +40,7 @@ public static IServiceCollection AddOptions(this IServiceCollection services) /// The options type to be configured. /// The to add the services to. /// The name of the options instance. - /// The so that additional calls can be chained. + /// The so that configure calls can be chained in it. public static OptionsBuilder AddOptionsWithValidateOnStart< [DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.All)] TOptions>( this IServiceCollection services, @@ -60,7 +60,7 @@ public static OptionsBuilder AddOptionsWithValidateOnStart< /// The validator type. /// The to add the services to. /// The name of the options instance. - /// The so that additional calls can be chained. + /// The so that configure calls can be chained in it. public static OptionsBuilder AddOptionsWithValidateOnStart< [DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.All)] TOptions, [DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicConstructors)] TValidateOptions>(