docs: Fix missing } in multiple formatters example (#22964)

Add a missing } in the multiple formatters example in the configuring
Zed section of the manual.

Release Notes:

- Fixed a missing } in the multiple formatters doc example
This commit is contained in:
Jeremy Cowgar 2025-01-10 09:39:34 -05:00 committed by GitHub
parent cbc403d3f3
commit b74cb92978
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -996,10 +996,12 @@ WARNING: `{buffer_path}` should not be used to direct your formatter to read fro
```json ```json
{ {
"formatter": [ "formatter": [
{"language_server": {"name": "rust-analyzer"}}, { "language_server": { "name": "rust-analyzer" } },
{"external": { {
"command": "sed", "external": {
"arguments": ["-e", "s/ *$//"] "command": "sed",
"arguments": ["-e", "s/ *$//"]
}
} }
] ]
} }