drop tracker tags from rust doc comments (lint)

This commit is contained in:
damocles 2026-07-03 00:09:57 +02:00 committed by mara
commit 0577c9e3fa
2 changed files with 5 additions and 5 deletions

View file

@ -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;
// -----------------------------------------------------------------------------