diff --git a/protocols/v2/binary-sv2/no-serde-sv2/codec/src/codec/decodable.rs b/protocols/v2/binary-sv2/no-serde-sv2/codec/src/codec/decodable.rs index a15f2c6a5d..c9d8ae9f0d 100644 --- a/protocols/v2/binary-sv2/no-serde-sv2/codec/src/codec/decodable.rs +++ b/protocols/v2/binary-sv2/no-serde-sv2/codec/src/codec/decodable.rs @@ -273,7 +273,7 @@ impl<'a> From> for Vec> { // Implements the decoding process for a `PrimitiveMarker`. // Given a slice of data and an offset, this method parses the corresponding data and returns // a `DecodablePrimitive`. This is the core mechanism for decoding primitive types like integers, -// booleans, and fixed-length byte arrays from raw byte data. +// Booleans, and fixed-length byte arrays from raw byte data. impl PrimitiveMarker { // Decodes a primitive value from a byte slice at the given offset, returning the corresponding // `DecodablePrimitive`. The specific decoding logic depends on the type of the primitive (e.g., `u8`, `u16`, etc.).