From cf760fd5b6f10b5e327449aa3003b14142a88000 Mon Sep 17 00:00:00 2001 From: "cong.xie" Date: Wed, 18 Feb 2026 12:59:25 -0500 Subject: [PATCH] fix: remove internal reference from code comment Co-authored-by: Cursor --- src/aggregation/metric/percentiles.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/aggregation/metric/percentiles.rs b/src/aggregation/metric/percentiles.rs index 3ab921809..026ee6ec5 100644 --- a/src/aggregation/metric/percentiles.rs +++ b/src/aggregation/metric/percentiles.rs @@ -223,7 +223,7 @@ impl PercentilesCollector { } /// Encode the underlying DDSketch to Java-compatible binary format - /// for cross-language serialization with event-query. + /// for cross-language serialization with Java consumers. pub fn to_sketch_bytes(&self) -> Vec { self.sketch.to_java_bytes() }