From 2a248a009281c10568ad3cef87c2434eefb8a3ae Mon Sep 17 00:00:00 2001 From: npub1tquskdu6yc4h8l7xxtceculxw600grekeq0xg2ukqfrwl7vrzg3quz3gmp <58390b379a262b73ffc632f19c73e6769ef40f36c81e642b960246eff9831222@buzz.block.builderlab.xyz> Date: Fri, 31 Jul 2026 21:31:03 -0700 Subject: [PATCH] docs(acp): clarify denial limiter bounds Co-authored-by: Tom Brow Signed-off-by: Tom Brow --- crates/buzz-acp/src/inbound_denial.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/buzz-acp/src/inbound_denial.rs b/crates/buzz-acp/src/inbound_denial.rs index 3322aa675..357a0f818 100644 --- a/crates/buzz-acp/src/inbound_denial.rs +++ b/crates/buzz-acp/src/inbound_denial.rs @@ -164,8 +164,8 @@ impl DenialLimiter { self.prune(now); let author_key = (channel_id, author.to_string()); - // Match OwnerCache's simple bounded-map policy. The channel cap remains - // the volume bound if a many-author burst clears the author map. + // Match OwnerCache's simple bounded-map policy. The channel map keeps + // its own cap when a many-author burst clears the author map. if self.by_author.len() >= MAX_TRACKED_DENIAL_KEYS { self.by_author.clear(); }