Skip to content

Commit

Permalink
docs: small fix on HashBuilderValue docs (#20)
Browse files Browse the repository at this point in the history
small fix on docs

Co-authored-by: Matthias Seitz <[email protected]>
  • Loading branch information
greged93 and mattsse authored Jul 26, 2024
1 parent c162373 commit ee03724
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/hash_builder/value.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ use alloc::vec::Vec;
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(feature = "arbitrary", derive(derive_arbitrary::Arbitrary, proptest_derive::Arbitrary))]
pub enum HashBuilderValue {
/// Value of the leaf node.
Hash(B256),
/// Hash of adjacent nodes.
Hash(B256),
/// Value of the leaf node.
Bytes(Vec<u8>),
}

Expand Down

0 comments on commit ee03724

Please sign in to comment.