From 93faa944e669f255f4fb9e95e4f7c81863f6bdd6 Mon Sep 17 00:00:00 2001 From: atlas Date: Tue, 15 Sep 2026 23:30:34 +0200 Subject: [PATCH] subagent: trim continue_'s doc comment under the 30-line cap MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Errors-section addition in 46a6317 pushed continue_'s doc comment to 31 lines. Drop the parenthetical on the already-running case — the Errors section states it already. Refs #4436 --- hive-subagent-mcp/src/session.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/hive-subagent-mcp/src/session.rs b/hive-subagent-mcp/src/session.rs index 19930820..c43eada4 100644 --- a/hive-subagent-mcp/src/session.rs +++ b/hive-subagent-mcp/src/session.rs @@ -1086,8 +1086,7 @@ fn start_reserved( /// Give an existing named session a new turn — resuming it whether that /// means "the previous turn finished, here's the next instruction" or "the -/// daemon restarted, reattaching." Refuses a name already running (same -/// concurrent-run hazard as `start`). +/// daemon restarted, reattaching." Refuses a name already running. /// /// A name with **no** session to resume is still not *pre-checked* here: /// claude's own `--resume` answers that, and the pre-check that used to live