Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix broken param name docs #5484

Merged
merged 1 commit into from
Sep 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ public static class DistributedApplicationHostingTestingExtensions
/// <summary>
/// Creates an <see cref="HttpClient"/> configured to communicate with the specified resource.
/// </summary>
/// <param resourceName="app">The application.</param>
/// <param resourceName="resourceName">The resourceName of the resource.</param>
/// <param resourceName="endpointName">The resourceName of the endpoint on the resource to communicate with.</param>
/// <param name="app">The application.</param>
/// <param name="resourceName">The resourceName of the resource.</param>
/// <param name="endpointName">The resourceName of the endpoint on the resource to communicate with.</param>
/// <returns>The <see cref="HttpClient"/>.</returns>
public static HttpClient CreateHttpClient(this DistributedApplication app, string resourceName, string? endpointName = default)
{
Expand Down
Loading