From ed171ad872745f944cd806e8f26b4918950c996a Mon Sep 17 00:00:00 2001 From: Philipp Gackstatter Date: Tue, 11 Feb 2025 08:09:00 +0100 Subject: [PATCH] chore: Update doc comments on `from_proofs` --- src/merkle/smt/partial.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/merkle/smt/partial.rs b/src/merkle/smt/partial.rs index 3ffa85b5..6d8b8ebe 100644 --- a/src/merkle/smt/partial.rs +++ b/src/merkle/smt/partial.rs @@ -32,8 +32,8 @@ impl PartialSmt { Self(Smt::new()) } - /// Instantiates a new [`PartialSmt`] by calling [`PartialSmt::add_path`] for all [`MerklePath`] - /// and [`SmtLeaf`] pairs in the provided iterator. + /// Instantiates a new [`PartialSmt`] by calling [`PartialSmt::add_path`] for all [`SmtProof`]s + /// in the provided iterator. /// /// # Errors ///