docs: Fix outdated context server setting example (#16545)

Release Notes:

- N/A
This commit is contained in:
jvmncs
2024-08-20 17:28:29 -04:00
committed by GitHub
parent a1438a49df
commit a3672d96d4
+3 -3
View File
@@ -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"]
}
]
}