From 19c2d590ae92a1f2ade9e32b287890517d5c53e7 Mon Sep 17 00:00:00 2001 From: frisitano Date: Fri, 13 Dec 2024 12:21:42 +0000 Subject: [PATCH] lint: private item in docs --- crates/trie/common/src/key.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.