From fe9a1c8580ff6db61a0ca804a51b40e45a40eb2b Mon Sep 17 00:00:00 2001 From: Greg Fitzgerald Date: Thu, 21 Jun 2018 16:09:17 -0700 Subject: [PATCH] Fix comment --- src/entry.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/entry.rs b/src/entry.rs index 03d163606b..3555834e97 100644 --- a/src/entry.rs +++ b/src/entry.rs @@ -85,7 +85,7 @@ fn add_transaction_data(hash_data: &mut Vec, tx: &Transaction) { /// Creates the hash `num_hashes` after `start_hash`. If the transaction contains /// a signature, the final hash will be a hash of both the previous ID and /// the signature. If num_hashes is zero and there's no transaction data, -// start_hash is returned. +/// start_hash is returned. fn next_hash(start_hash: &Hash, num_hashes: u64, transactions: &[Transaction]) -> Hash { let mut id = *start_hash; for _ in 1..num_hashes {