diff --git a/crates/trie/common/src/key.rs b/crates/trie/common/src/key.rs index f775c78ab60b..c439c7eaf94e 100644 --- a/crates/trie/common/src/key.rs +++ b/crates/trie/common/src/key.rs @@ -33,7 +33,7 @@ pub trait BitsCompatibility: Sized { /// Unpacks the bits from the provided bytes such that there is a byte for each bit in the /// input. The representation is big-endian with respect to the input. /// - /// We truncate the Nibbles such that we only have [`MAX_BITS`] (bn254 field size) bits. + /// We truncate the Nibbles such that we only have 254 (bn254 field size) bits. fn unpack_bits>(data: T) -> Self; /// Pack the bits into a byte representation.