From e4cfdf992b213a809c8fabbf62e129af9d452afa Mon Sep 17 00:00:00 2001 From: pedro bufulin Date: Wed, 6 Nov 2024 14:55:52 -0300 Subject: [PATCH] refactor: correct grammar --- crates/forrestrie-examples/examples/receipts_proof.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/forrestrie-examples/examples/receipts_proof.rs b/crates/forrestrie-examples/examples/receipts_proof.rs index 4f0f55af..d91a03b7 100644 --- a/crates/forrestrie-examples/examples/receipts_proof.rs +++ b/crates/forrestrie-examples/examples/receipts_proof.rs @@ -27,7 +27,7 @@ async fn main() { .map(|full_receipt| full_receipt.receipt.clone()) .collect(); - // These are de indexes of receipts on which proofs have to be generated + // These are the indexes of receipts for which proofs need to be generated let target_idxs = &[1, 2, 3]; let targets = TargetLeaves::from_indices(target_idxs, &receipts_with_bloom).unwrap(); let mut hb = build_trie_with_proofs(&receipts_with_bloom, target_idxs);