From b628931211f03b4e4d6d8338462323a48202ea86 Mon Sep 17 00:00:00 2001 From: florent-leborgne Date: Thu, 17 Jul 2025 09:41:37 +0200 Subject: [PATCH] Fix missing quote in example --- docs/reference/transport.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/transport.md b/docs/reference/transport.md index ddb09df6795..8f2c75c27fd 100644 --- a/docs/reference/transport.md +++ b/docs/reference/transport.md @@ -56,7 +56,7 @@ var response = await client.Transport The `OnBeforeRequest` callback in `IElasticsearchClientSettings` can be used to dynamically modify requests. ```csharp -var settings = new ElasticsearchClientSettings(new Uri("http://localhost:9200)) +var settings = new ElasticsearchClientSettings(new Uri("http://localhost:9200")) .OnBeforeRequest(OnBeforeRequest); <1> RequestConfiguration? globalRequestConfiguration = null;