Skip to content

Commit e37b279

Browse files
authored
fix: Add missing keyword to docs example
1 parent 2dc9f57 commit e37b279

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ await container.StartAsync()
2121
.ConfigureAwait(false);
2222

2323
// Create a new instance of HttpClient to send HTTP requests.
24-
using httpClient = new HttpClient();
24+
using var httpClient = new HttpClient();
2525

2626
// Construct the request URI by specifying the scheme, hostname, assigned random host port, and the endpoint "uuid".
2727
var requestUri = new UriBuilder(Uri.UriSchemeHttp, container.Hostname, container.GetMappedPublicPort(8080), "uuid").Uri;

0 commit comments

Comments
 (0)