Skip to content

Commit f1e6e71

Browse files
stevejgordonrynowak
authored andcommitted
Fixing incorrect param type in XML comments\n\nCommit migrated from dotnet/extensions@8792791
1 parent 819ed64 commit f1e6e71

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/HttpClientFactory/Http/src/DependencyInjection/HttpClientBuilderExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public static class HttpClientBuilderExtensions
1919
/// <summary>
2020
/// Adds a delegate that will be used to configure a named <see cref="HttpClient"/>.
2121
/// </summary>
22-
/// <param name="builder">The <see cref="IServiceCollection"/>.</param>
22+
/// <param name="builder">The <see cref="IHttpClientBuilder"/>.</param>
2323
/// <param name="configureClient">A delegate that is used to configure an <see cref="HttpClient"/>.</param>
2424
/// <returns>An <see cref="IHttpClientBuilder"/> that can be used to configure the client.</returns>
2525
public static IHttpClientBuilder ConfigureHttpClient(this IHttpClientBuilder builder, Action<HttpClient> configureClient)
@@ -42,7 +42,7 @@ public static IHttpClientBuilder ConfigureHttpClient(this IHttpClientBuilder bui
4242
/// <summary>
4343
/// Adds a delegate that will be used to configure a named <see cref="HttpClient"/>.
4444
/// </summary>
45-
/// <param name="builder">The <see cref="IServiceCollection"/>.</param>
45+
/// <param name="builder">The <see cref="IHttpClientBuilder"/>.</param>
4646
/// <param name="configureClient">A delegate that is used to configure an <see cref="HttpClient"/>.</param>
4747
/// <returns>An <see cref="IHttpClientBuilder"/> that can be used to configure the client.</returns>
4848
/// <remarks>

0 commit comments

Comments
 (0)