We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2dc9f57 commit e37b279Copy full SHA for e37b279
docs/index.md
@@ -21,7 +21,7 @@ await container.StartAsync()
21
.ConfigureAwait(false);
22
23
// Create a new instance of HttpClient to send HTTP requests.
24
-using httpClient = new HttpClient();
+using var httpClient = new HttpClient();
25
26
// Construct the request URI by specifying the scheme, hostname, assigned random host port, and the endpoint "uuid".
27
var requestUri = new UriBuilder(Uri.UriSchemeHttp, container.Hostname, container.GetMappedPublicPort(8080), "uuid").Uri;
0 commit comments