From db05e42ffd1572ed2e05f4f7500b858f1f47bcc6 Mon Sep 17 00:00:00 2001 From: Roman Krasiuk Date: Fri, 23 Jun 2023 21:58:15 +0300 Subject: [PATCH] docs(trie): fix typo (#3366) --- crates/trie/src/trie.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/trie/src/trie.rs b/crates/trie/src/trie.rs index 6348e8f1a3..2dc257ca20 100644 --- a/crates/trie/src/trie.rs +++ b/crates/trie/src/trie.rs @@ -54,7 +54,7 @@ impl<'a, 'b, TX, H> StateRoot<'a, 'b, TX, H> { self } - /// Set the threshold to maximum value so that itermediate progress is not returned. + /// Set the threshold to maximum value so that intermediate progress is not returned. pub fn with_no_threshold(mut self) -> Self { self.threshold = u64::MAX; self