From 2e97ab9dc5e2f8c9247a4958d8b92156277a5e27 Mon Sep 17 00:00:00 2001 From: iris Date: Sat, 19 Sep 2026 01:50:52 +0200 Subject: [PATCH] hive-c0re: fix a stale function-name reference in a comment argus caught it in review: a comment still named is_byte_size, which this PR's own diff renamed to normalized_byte_size. --- hive-c0re/src/agent_config/resource_limits.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hive-c0re/src/agent_config/resource_limits.rs b/hive-c0re/src/agent_config/resource_limits.rs index 46f38a34..153877ae 100644 --- a/hive-c0re/src/agent_config/resource_limits.rs +++ b/hive-c0re/src/agent_config/resource_limits.rs @@ -476,7 +476,7 @@ mod tests { parse_bytes("1.5G"), Some(1024 * 1024 * 1024 + 512 * 1024 * 1024) ); - // Lowercase suffixes accepted, matching `is_byte_size`. + // Lowercase suffixes accepted, matching `normalized_byte_size`. assert_eq!(parse_bytes("4g"), Some(4 * 1024 * 1024 * 1024)); }