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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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"]
}
]
}