Removing unnecessary param tags and words

#17349
This commit is contained in:
Dairai Nyabando 2019-12-04 23:04:39 -05:00
parent a71aa8a5bc
commit d4f380f67a
2 changed files with 3 additions and 3 deletions

View File

@ -65,7 +65,7 @@ namespace Microsoft.AspNetCore.HttpsPolicy
/// <param name="options"></param>
/// <param name="config"></param>
/// <param name="loggerFactory"></param>
/// <param name="serverAddressesFeature">The</param>
/// <param name="serverAddressesFeature"></param>
public HttpsRedirectionMiddleware(RequestDelegate next, IOptions<HttpsRedirectionOptions> options, IConfiguration config, ILoggerFactory loggerFactory,
IServerAddressesFeature serverAddressesFeature)
: this(next, options, config, loggerFactory)

View File

@ -21,7 +21,7 @@ namespace Microsoft.AspNetCore.Hosting
/// The Microsoft.AspNetCore.Hosting.IWebHostBuilder to configure.
/// </param>
/// <returns>
/// A reference to the <see cref="IWebHostBuilder" /> parameter object.</param>
/// A reference to the <see cref="IWebHostBuilder" /> parameter object.
/// </returns>
public static IWebHostBuilder UseHttpSys(this IWebHostBuilder hostBuilder)
{
@ -50,7 +50,7 @@ namespace Microsoft.AspNetCore.Hosting
/// A callback to configure Http.sys options.
/// </param>
/// <returns>
/// A reference to the <see cref="IWebHostBuilder" /> parameter object.</param>
/// A reference to the <see cref="IWebHostBuilder" /> parameter object.
/// </returns>
public static IWebHostBuilder UseHttpSys(this IWebHostBuilder hostBuilder, Action<HttpSysOptions> options)
{