From 99f21fc543e783bf43b5cdbfdff4924d7372ee09 Mon Sep 17 00:00:00 2001 From: zancas Date: Mon, 8 Aug 2022 17:34:11 -0600 Subject: [PATCH 1/2] Make general statement about merkle trees more conservative --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 84cd748..b4aab31 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -16,7 +16,7 @@ //! //! ## Marking //! -//! Merkle trees are typically used to show that a value exists in the tree by providing a witness +//! Merkle trees can be used to show that a value exists in the tree by providing a witness //! to a leaf value. We provide an API that allows us to mark the current leaf as a value we wish //! to compute witnesss for even after the tree has been appended to in the future; this is called //! maintaining a witness. When we're later no longer in a leaf, we can remove the mark and drop From 0eb0cc527d1cb99bfd6a7990fa5bbed4b0fc5651 Mon Sep 17 00:00:00 2001 From: zancas Date: Mon, 8 Aug 2022 17:36:24 -0600 Subject: [PATCH 2/2] typo --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index b4aab31..8da840b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -18,7 +18,7 @@ //! //! Merkle trees can be used to show that a value exists in the tree by providing a witness //! to a leaf value. We provide an API that allows us to mark the current leaf as a value we wish -//! to compute witnesss for even after the tree has been appended to in the future; this is called +//! to compute witnesses for even after the tree has been appended to in the future; this is called //! maintaining a witness. When we're later no longer in a leaf, we can remove the mark and drop //! the now unnecessary information from the structure. //!