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

Jeremy Cowgar created

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

Change summary

docs/src/configuring-zed.md | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)

Detailed changes

docs/src/configuring-zed.md 🔗

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