From e31e7710c15ecc8693ec97215b561a795c131e6f Mon Sep 17 00:00:00 2001 From: luchenhan <168071714+luchenhan@users.noreply.github.com> Date: Mon, 6 Jan 2025 12:25:44 +0900 Subject: [PATCH] chore: remove redundant words in comment (#882) Signed-off-by: luchenhan --- book/src/sdk/pipeline/signaling.md | 2 +- crates/executor/src/db/mod.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/book/src/sdk/pipeline/signaling.md b/book/src/sdk/pipeline/signaling.md index eaa367df7..fed8fc94a 100644 --- a/book/src/sdk/pipeline/signaling.md +++ b/book/src/sdk/pipeline/signaling.md @@ -13,7 +13,7 @@ pipeline driver. The variants of [`StepResult`][step-result] and what they signal include the following. - `StepResult::PreparedAttributes` - signals that payload attributes are - ready to be be consumed by the pipeline driver. + ready to be consumed by the pipeline driver. - `StepResult::AdvancedOrigin` - signals that the pipeline has derived all payload attributes for the given L1 block, and the origin of the pipeline was advanced to the next canonical L1 block. diff --git a/crates/executor/src/db/mod.rs b/crates/executor/src/db/mod.rs index 0076a4bec..af77fcaa9 100644 --- a/crates/executor/src/db/mod.rs +++ b/crates/executor/src/db/mod.rs @@ -110,7 +110,7 @@ where } } - /// Consumes `Self` and takes the the current state root of the trie DB. + /// Consumes `Self` and takes the current state root of the trie DB. pub fn take_root_node(self) -> TrieNode { self.root_node }