From 693e8fa2f0cb2247bfe3880d16067d3aeac9b1b3 Mon Sep 17 00:00:00 2001 From: florent-leborgne Date: Thu, 17 Jul 2025 09:56:41 +0200 Subject: [PATCH] Fix missing quote in docs example (#8628) (cherry picked from commit 3e9a5c8022b526c0143e20f8dfb9ab028b59e191) --- 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 ddb09df679..8f2c75c27f 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;