From 0d47b80e683299f75ebecb72492edfc3423bc1cd Mon Sep 17 00:00:00 2001 From: teor Date: Tue, 27 Oct 2020 19:31:45 +1000 Subject: [PATCH] Fix a comment typo --- zebra-state/src/service/memory_state.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zebra-state/src/service/memory_state.rs b/zebra-state/src/service/memory_state.rs index 7f06e3f0b..0a40ea9d3 100644 --- a/zebra-state/src/service/memory_state.rs +++ b/zebra-state/src/service/memory_state.rs @@ -76,7 +76,7 @@ impl Chain { .expect("only called while blocks is populated") } - /// Fork a chain at the block with the givin hash, if it is part of this + /// Fork a chain at the block with the given hash, if it is part of this /// chain. pub fn fork(&self, fork_tip: block::Hash) -> Option { if !self.height_by_hash.contains_key(&fork_tip) {