From 7def5147602f87769bf7d2fb82700662d5b05a37 Mon Sep 17 00:00:00 2001 From: damocles Date: Fri, 3 Jul 2026 00:55:53 +0200 Subject: [PATCH] clippy: backtick socket_server in doc comment --- hive-sh4re/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hive-sh4re/src/lib.rs b/hive-sh4re/src/lib.rs index b878affe..09931b0d 100644 --- a/hive-sh4re/src/lib.rs +++ b/hive-sh4re/src/lib.rs @@ -12,7 +12,7 @@ pub mod wire_time; /// 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. -/// Lives here so both the enforcing side (hive-c0re's socket_server) and +/// 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;