Merge pull request #46 from zingolabs/doc_update

Doc update
This commit is contained in:
Kris Nuttycombe 2022-08-16 12:05:29 -06:00 committed by GitHub
commit 49eca24a11
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -16,9 +16,9 @@
//!
//! ## 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
//! 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.
//!