From 64f8b1e73956bcdb20dd0583532dae4a78879da2 Mon Sep 17 00:00:00 2001 From: James Falade Date: Tue, 8 Apr 2025 16:03:42 +0100 Subject: [PATCH] docs: Add missing comma in the Tasks page (#28324) Added a missing command in the same tasks.json file Release Notes: - N/A --- docs/src/tasks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/tasks.md b/docs/src/tasks.md index c9d4e5e1aa..7eb6fd7f8d 100644 --- a/docs/src/tasks.md +++ b/docs/src/tasks.md @@ -45,7 +45,7 @@ Zed supports ways to spawn (and rerun) commands using its integrated terminal to // Whether to show the task line in the output of the spawned task, defaults to `true`. "show_summary": true, // Whether to show the command line in the output of the spawned task, defaults to `true`. - "show_output": true + "show_output": true, // Represents the tags for inline runnable indicators, or spawning multiple tasks at once. "tags": [] }