From a3672d96d4a8f776f32ffb6d830130d54d418bf4 Mon Sep 17 00:00:00 2001 From: jvmncs <7891333+jvmncs@users.noreply.github.com> Date: Tue, 20 Aug 2024 17:28:29 -0400 Subject: [PATCH] docs: Fix outdated context server setting example (#16545) Release Notes: - N/A --- docs/src/assistant/context-servers.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/src/assistant/context-servers.md b/docs/src/assistant/context-servers.md index 730086699d..9c4c93eebe 100644 --- a/docs/src/assistant/context-servers.md +++ b/docs/src/assistant/context-servers.md @@ -10,12 +10,12 @@ To configure Zed to use a Context Server, add the command required to start the ```json { - "experimental": { - "context_servers": [ + "experimental.context_servers": { + "servers": [ { "id": "python_context_server", "executable": "python", - "args": ["-m", "my_context_server"] + "args": ["-m", "your_context_server_module"] } ] }