From a75dced6e9af0fe08cfd03e98035b09958a5a2ab Mon Sep 17 00:00:00 2001 From: Bobbin Threadbare Date: Sun, 19 Jan 2025 14:10:59 -0800 Subject: [PATCH] chore: fix typo --- src/merkle/smt/full/leaf.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/merkle/smt/full/leaf.rs b/src/merkle/smt/full/leaf.rs index 0486791..810c93c 100644 --- a/src/merkle/smt/full/leaf.rs +++ b/src/merkle/smt/full/leaf.rs @@ -46,7 +46,7 @@ impl SmtLeaf { let leaf = Self::new_multiple(entries)?; // `new_multiple()` checked that all keys map to the same leaf index. We still need - // to ensure that that leaf index is `leaf_index`. + // to ensure that leaf index is `leaf_index`. if leaf.index() != leaf_index { Err(SmtLeafError::InconsistentMultipleLeafIndices { leaf_index_from_keys: leaf.index(),