Skip to content

Commit 7ba701a

Browse files
authored
docs: typos (paradigmxyz#14806)
1 parent 7413f11 commit 7ba701a

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

book/developers/exex/how-it-works.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Reth manages the lifecycle of all ExExes, including:
1111
- Sending [notifications](https://reth.rs/docs/reth_exex/enum.ExExNotification.html) about new chain, reverts,
1212
and reorgs from historical and live sync
1313
- Processing [events](https://reth.rs/docs/reth_exex/enum.ExExEvent.html) emitted by ExExes
14-
- Pruning (in case of a full or pruned node) only the data that have been processed by all ExExes
14+
- Pruning (in case of a full or pruned node) only the data that has been processed by all ExExes
1515
- Shutting ExExes down when the node is shut down
1616

1717
## Pruning

crates/engine/tree/src/tree/payload_processor/prewarm.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ where
209209
+ ConfigureEvm<Header = N::BlockHeader, Transaction = N::SignedTx>
210210
+ 'static,
211211
{
212-
/// Transacts the the transactions and transform the state into [`MultiProofTargets`].
212+
/// Transacts the transactions and transform the state into [`MultiProofTargets`].
213213
fn prepare_multiproof_targets(self, tx: Recovered<N::SignedTx>) -> Option<MultiProofTargets> {
214214
let metrics = self.metrics.clone();
215215
let state = self.transact(tx)?;

crates/net/downloaders/src/headers/reverse_headers.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -304,9 +304,9 @@ where
304304

305305
// If the header is valid on its own, but not against its parent, we return it as
306306
// detached head error.
307-
// In stage sync this will trigger an unwind because this means that the the local head
307+
// In stage sync this will trigger an unwind because this means that the local head
308308
// is not part of the chain the sync target is on. In other words, the downloader was
309-
// unable to connect the the sync target with the local head because the sync target and
309+
// unable to connect the sync target with the local head because the sync target and
310310
// the local head or on different chains.
311311
if let Err(error) = self.consensus.validate_header_against_parent(&*last_header, head) {
312312
let local_head = head.clone();

crates/optimism/chain-registry/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! Utilities for interacting the the optimism superchain registry
1+
//! Utilities for interacting the optimism superchain registry
22
33
#![doc(
44
html_logo_url = "https://raw.githubusercontent.com/paradigmxyz/reth/main/assets/reth-docs.png",

crates/optimism/evm/src/l1.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ pub fn extract_l1_info<B: BlockBody>(body: &B) -> Result<L1BlockInfo, OpBlockExe
3838
extract_l1_info_from_tx(l1_info_tx)
3939
}
4040

41-
/// Extracts the [`L1BlockInfo`] from the the L1 info transaction (first transaction) in the L2
41+
/// Extracts the [`L1BlockInfo`] from the L1 info transaction (first transaction) in the L2
4242
/// block.
4343
///
4444
/// Returns an error if the calldata is shorter than 4 bytes.

crates/tasks/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ pub struct TaskManager {
176176
// === impl TaskManager ===
177177

178178
impl TaskManager {
179-
/// Returns a a [`TaskManager`] over the currently running Runtime.
179+
/// Returns a [`TaskManager`] over the currently running Runtime.
180180
///
181181
/// # Panics
182182
///

0 commit comments

Comments
 (0)