From 526faf287d83ce73e5e7a87859403b93d36b1d43 Mon Sep 17 00:00:00 2001 From: Jeff Bonhag Date: Wed, 18 Jun 2025 18:48:47 -0400 Subject: [PATCH] docs: Ruby debug configuration should be an array (#32991) Closes #ISSUE Small correction for something I noticed while setting up the debugger today. Release Notes: - N/A --- docs/src/debugger.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/debugger.md b/docs/src/debugger.md index 95a14879c7..a439de7e73 100644 --- a/docs/src/debugger.md +++ b/docs/src/debugger.md @@ -383,7 +383,7 @@ To run a ruby task in the debugger, you will need to configure it in the `.zed/d The configuration should look like this: ```json -{ +[ { "adapter": "Ruby", "label": "Run CLI", @@ -396,7 +396,7 @@ The configuration should look like this: // "env": {} // "cwd": "" } -} +] ``` ## Breakpoints