From 49f7543aa2d68927e3ac8a7bdbd34f60b1fda440 Mon Sep 17 00:00:00 2001 From: queryfast <113781357+queryfast@users.noreply.github.com> Date: Thu, 7 Aug 2025 00:38:47 +0800 Subject: [PATCH] chore: remove redundant word in comment (#17728) Signed-off-by: queryfast --- crates/trie/sparse-parallel/src/trie.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/trie/sparse-parallel/src/trie.rs b/crates/trie/sparse-parallel/src/trie.rs index 7a3e1e1f97..7c1f8a02bc 100644 --- a/crates/trie/sparse-parallel/src/trie.rs +++ b/crates/trie/sparse-parallel/src/trie.rs @@ -2454,7 +2454,7 @@ fn path_subtrie_index_unchecked(path: &Nibbles) -> usize { path.get_byte_unchecked(0) as usize } -/// Used by lower subtries to communicate updates to the the top-level [`SparseTrieUpdates`] set. +/// Used by lower subtries to communicate updates to the top-level [`SparseTrieUpdates`] set. #[derive(Clone, Debug, Eq, PartialEq)] enum SparseTrieUpdatesAction { /// Remove the path from the `updated_nodes`, if it was present, and add it to `removed_nodes`.