From 0577c9e3fa927324592b5b3b9ba5b2bb515f96f5 Mon Sep 17 00:00:00 2001 From: damocles Date: Fri, 3 Jul 2026 00:09:57 +0200 Subject: [PATCH] drop tracker tags from rust doc comments (lint) --- hive-c0re/src/socket_server.rs | 2 +- hive-sh4re/src/lib.rs | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/hive-c0re/src/socket_server.rs b/hive-c0re/src/socket_server.rs index de8446ec..b21f60e3 100644 --- a/hive-c0re/src/socket_server.rs +++ b/hive-c0re/src/socket_server.rs @@ -151,7 +151,7 @@ pub(crate) const RECV_LONG_POLL_MAX: std::time::Duration = std::time::Duration:: /// Server-side hard cap on `Recv.max` — canonical value lives in /// `hive_sh4re::RECV_BATCH_MAX` so the harness's wake-prompt hint and -/// this enforcement site can't drift apart (#2150). +/// this enforcement site can't drift apart. pub(crate) const RECV_BATCH_MAX: u32 = hive_sh4re::RECV_BATCH_MAX; pub(crate) fn recv_timeout(wait_seconds: Option) -> std::time::Duration { diff --git a/hive-sh4re/src/lib.rs b/hive-sh4re/src/lib.rs index 3f422be3..b878affe 100644 --- a/hive-sh4re/src/lib.rs +++ b/hive-sh4re/src/lib.rs @@ -11,10 +11,10 @@ pub mod wire_time; /// the size of a single round-trip so a confused caller can't drain the /// entire inbox in one go and blow past wire-buffer sizes; everything /// above the cap silently clamps. 5 keeps individual turns small — a big -/// backlog is drained over several recv calls instead of one giant pop -/// (#2150). Lives here so both the enforcing side (hive-c0re's -/// socket_server) and the hinting side (hive-ag3nt's wake prompt + tool -/// docs) reference one constant instead of a scattered magic value. +/// backlog is drained over several recv calls instead of one giant pop. +/// Lives here so both the enforcing side (hive-c0re's socket_server) and +/// the hinting side (hive-ag3nt's wake prompt + tool docs) reference one +/// constant instead of a scattered magic value. pub const RECV_BATCH_MAX: u32 = 5; // -----------------------------------------------------------------------------