From c623ada3e2e66f115f83b18bff41fb800d218f24 Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Wed, 15 Apr 2026 18:44:37 +0200 Subject: [PATCH] doc: fix another bad code block --- packages/coding-agent/docs/rpc.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/coding-agent/docs/rpc.md b/packages/coding-agent/docs/rpc.md index cb0a549a..6572fa98 100644 --- a/packages/coding-agent/docs/rpc.md +++ b/packages/coding-agent/docs/rpc.md @@ -464,13 +464,13 @@ The `bash` command executes immediately and returns a `BashResult`. Internally, When the next `prompt` command is sent, all messages (including `BashExecutionMessage`) are transformed before being sent to the LLM. The `BashExecutionMessage` is converted to a `UserMessage` with this format: -``` +```` Ran `ls -la` -\`\`\` +``` total 48 drwxr-xr-x ... -\`\`\` ``` +```` This means: 1. Bash output is included in the LLM context on the **next prompt**, not immediately