diff --git a/crates/blockchain-tree/src/bundle.rs b/crates/blockchain-tree/src/bundle.rs index 3745753d3..ef9fc2167 100644 --- a/crates/blockchain-tree/src/bundle.rs +++ b/crates/blockchain-tree/src/bundle.rs @@ -5,7 +5,7 @@ use alloy_primitives::{BlockHash, BlockNumber}; use reth_provider::{BlockExecutionForkProvider, ExecutionDataProvider, ExecutionOutcome}; use std::collections::BTreeMap; -/// Structure that combines references of required data to be a [`ExecutionDataProvider`]. +/// Structure that combines references of required data to be an [`ExecutionDataProvider`]. #[derive(Clone, Debug)] pub struct BundleStateDataRef<'a> { /// The execution outcome after execution of one or more transactions and/or blocks. @@ -39,7 +39,7 @@ impl BlockExecutionForkProvider for BundleStateDataRef<'_> { } } -/// Structure that owns the relevant data needs to be a [`ExecutionDataProvider`] +/// Structure that owns the relevant data needs to be an [`ExecutionDataProvider`] #[derive(Clone, Debug)] pub struct ExecutionData { /// Execution outcome. diff --git a/crates/cli/commands/src/common.rs b/crates/cli/commands/src/common.rs index e206715fc..074cea655 100644 --- a/crates/cli/commands/src/common.rs +++ b/crates/cli/commands/src/common.rs @@ -107,7 +107,7 @@ impl EnvironmentArgs { /// Returns a [`ProviderFactory`] after executing consistency checks. /// /// If it's a read-write environment and an issue is found, it will attempt to heal (including a - /// pipeline unwind). Otherwise, it will print out an warning, advising the user to restart the + /// pipeline unwind). Otherwise, it will print out a warning, advising the user to restart the /// node to heal. fn create_provider_factory( &self, diff --git a/crates/cli/commands/src/init_state/mod.rs b/crates/cli/commands/src/init_state/mod.rs index bdade252a..3a7873780 100644 --- a/crates/cli/commands/src/init_state/mod.rs +++ b/crates/cli/commands/src/init_state/mod.rs @@ -101,7 +101,7 @@ impl> InitStateC )?; // SAFETY: it's safe to commit static files, since in the event of a crash, they - // will be unwinded according to database checkpoints. + // will be unwound according to database checkpoints. // // Necessary to commit, so the header is accessible to provider_rw and // init_state_dump diff --git a/crates/cli/commands/src/test_vectors/mod.rs b/crates/cli/commands/src/test_vectors/mod.rs index 001d0c2e8..73d7b8cfa 100644 --- a/crates/cli/commands/src/test_vectors/mod.rs +++ b/crates/cli/commands/src/test_vectors/mod.rs @@ -25,7 +25,7 @@ pub enum Subcommands { /// The generated vectors are serialized in both `json` and `Compact` formats and saved to a /// file. /// - /// Use the `--read` flag to read and validate the previously generated vectors from file. + /// Use the `--read` flag to read and validate the previously generated vectors from a file. #[group(multiple = false, required = true)] Compact { /// Write test vectors to a file.