From 315f7c1f13524404b0c0260e2c6c587d6d6c69ce Mon Sep 17 00:00:00 2001 From: iris Date: Sat, 4 Jul 2026 17:42:34 +0200 Subject: [PATCH] fix(docs/bash): fix broken prose sentence from prettier reformatting The prettier markdown formatter (8406a452) converted a prose '+' into a markdown list marker '-', splitting 'fires a wake...and the exit code + last stdout lines' into a dangling incomplete sentence followed by an orphaned list item. Rewrite the sentence to avoid the pattern entirely. --- docs/tools/bash.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/tools/bash.md b/docs/tools/bash.md index 6f2134f3..72d03ff0 100644 --- a/docs/tools/bash.md +++ b/docs/tools/bash.md @@ -14,9 +14,9 @@ invocation regardless of tool groups. Submit a shell command for background execution (runs via `bash`). Stdout and stderr stream to `harness/bash-tasks/.{out,err}`. When the task completes (or times out, or the process errors), the -harness fires a wake with `from: "bash-task-"` and the exit code - -- last stdout lines in the body; handle it on a future turn. +harness fires a wake with `from: "bash-task-"`; the body contains +the exit code and last stdout lines. Handle the completion on a future +turn. * `timeout_secs` — kill the task after N seconds and mark it `timed_out`. Omit for no timeout (runs until natural exit).