From e178c12b6e34f7908457f2a625c50f17299fa7af Mon Sep 17 00:00:00 2001 From: Donjuanplatinum Date: Fri, 27 Feb 2026 20:05:45 +0800 Subject: [PATCH] clippy fix --- src/core/utils/two_phase_counter.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/utils/two_phase_counter.rs b/src/core/utils/two_phase_counter.rs index 9489790a..fecebb94 100644 --- a/src/core/utils/two_phase_counter.rs +++ b/src/core/utils/two_phase_counter.rs @@ -139,7 +139,7 @@ impl Result + Sync> State { /// Retire the sequence number `id`. fn retire(&mut self, id: u64) { - debug_assert!(self.check_pending(id), "sequence number must be currently pending",); + debug_assert!(self.check_pending(id), "sequence number must be currently pending"); let index = self .pending_index(id)