diff --git a/varint-rs/src/lib.rs b/varint-rs/src/lib.rs index 92493622..4a0a4855 100644 --- a/varint-rs/src/lib.rs +++ b/varint-rs/src/lib.rs @@ -67,7 +67,7 @@ const USABLE_BITS_PER_BYTE: usize = 7; #[derive(Debug)] pub struct EncoderState { source: T, - // A "chunk" is a section of the contained `BigUint` `USABLE_BITS_PER_BYTE` bits long + // A "chunk" is a section of the `source` `USABLE_BITS_PER_BYTE` bits long num_chunks: usize, cur_chunk: usize, }