From 945c097cd005a26692d06da64c18b2574ccf1ccf Mon Sep 17 00:00:00 2001 From: Allan Targino <13934447+allantargino@users.noreply.github.com> Date: Wed, 21 Feb 2024 14:29:32 -0300 Subject: [PATCH] fix csharp example in load balancing page (#2411) --- docs/docfx/articles/load-balancing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docfx/articles/load-balancing.md b/docs/docfx/articles/load-balancing.md index 932ce07fb..7a2801138 100644 --- a/docs/docfx/articles/load-balancing.md +++ b/docs/docfx/articles/load-balancing.md @@ -48,7 +48,7 @@ var clusters = new[] { ClusterId = "cluster1", LoadBalancingPolicy = LoadBalancingPolicies.RoundRobin, - Destinations = new Dictionary(StringComparer.OrdinalIgnoreCase) + Destinations = new Dictionary(StringComparer.OrdinalIgnoreCase) { { "destination1", new DestinationConfig() { Address = "https://localhost:10000" } }, { "destination2", new DestinationConfig() { Address = "https://localhost:10010" } }