diff --git a/src/Microsoft.AspNetCore/WebHost.cs b/src/Microsoft.AspNetCore/WebHost.cs index 987d9afd2c..31ab9461d2 100644 --- a/src/Microsoft.AspNetCore/WebHost.cs +++ b/src/Microsoft.AspNetCore/WebHost.cs @@ -122,16 +122,15 @@ namespace Microsoft.AspNetCore /// load from 'appsettings.json' and 'appsettings.[].json', /// load from User Secrets when is 'Development' using the entry assembly, /// load from environment variables, - /// configures the to log to the console and debug output, - /// enables IIS integration, - /// and enables the ability for frameworks to bind their options to their default configuration sections. + /// configure the to log to the console and debug output, + /// and enable IIS integration. /// /// The initialized . public static IWebHostBuilder CreateDefaultBuilder() => CreateDefaultBuilder(args: null); /// - /// Initializes a new instance of the class with pre-configured defaults. + /// Initializes a new instance of the class with pre-configured defaults. /// /// /// The following defaults are applied to the returned : @@ -141,9 +140,8 @@ namespace Microsoft.AspNetCore /// load from User Secrets when is 'Development' using the entry assembly, /// load from environment variables, /// load from supplied command line args, - /// configures the to log to the console and debug output, - /// enables IIS integration, - /// and enables the ability for frameworks to bind their options to their default configuration sections. + /// configure the to log to the console and debug output, + /// and enable IIS integration. /// /// The command line args. /// The initialized . @@ -232,9 +230,8 @@ namespace Microsoft.AspNetCore /// load from User Secrets when is 'Development' using the entry assembly, /// load from environment variables, /// load from supplied command line args, - /// configures the to log to the console and debug output, - /// enables IIS integration, - /// enables the ability for frameworks to bind their options to their default configuration sections. + /// configure the to log to the console and debug output, + /// enable IIS integration. /// /// The type containing the startup methods for the application. /// The command line args.