From 4e6ef1abce2e56ece19a9fc160df7aae35fd427a Mon Sep 17 00:00:00 2001 From: Morgan McCauley Date: Fri, 12 Jul 2024 08:34:54 +1200 Subject: [PATCH] Update block-streamer/src/receiver_blocks/bitmap.rs Co-authored-by: Darun Seethammagari --- block-streamer/src/receiver_blocks/bitmap.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/block-streamer/src/receiver_blocks/bitmap.rs b/block-streamer/src/receiver_blocks/bitmap.rs index fd2c1521..57824656 100644 --- a/block-streamer/src/receiver_blocks/bitmap.rs +++ b/block-streamer/src/receiver_blocks/bitmap.rs @@ -47,7 +47,7 @@ struct EliasGammaDecoded { /// length of the run of bits (0s or 1s) in the decompressed bitmap. pub value: u64, /// The index of the last bit in the compressed bitmap that was part of the - /// Elias Gamma encoded value. Used to determine the starting point for the next encoded value. + /// Elias Gamma sequence. Used to determine the starting point for the next sequence. pub last_bit_index: usize, }