Skip to content

Commit 2774247

Browse files
committed
fix test
1 parent f8489ec commit 2774247

File tree

5 files changed

+166
-264
lines changed

5 files changed

+166
-264
lines changed

src/common/base/src/runtime/executor_stats/stats.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ fn pack(timestamp: u32, value: u32) -> u64 {
3737
(timestamp as u64) << TS_SHIFT | (value as u64)
3838
}
3939

40-
/// Unpacks a u64 into a timestamp (u32) and a value (u32).
40+
/// Unpacks an u64 into a timestamp (u32) and a value (u32).
4141
#[inline]
4242
fn unpack(packed: u64) -> (u32, u32) {
4343
((packed >> TS_SHIFT) as u32, (packed & VAL_MASK) as u32)

0 commit comments

Comments
 (0)