diff --git a/crates/e2e-test-utils/src/testsuite/actions.rs b/crates/e2e-test-utils/src/testsuite/actions.rs index e7ed9b801c..186849a26b 100644 --- a/crates/e2e-test-utils/src/testsuite/actions.rs +++ b/crates/e2e-test-utils/src/testsuite/actions.rs @@ -447,7 +447,7 @@ impl Action for Sequence { } } -/// Action that braodcasts the next new payload +/// Action that broadcasts the next new payload #[derive(Debug, Default)] pub struct BroadcastNextNewPayload {} diff --git a/crates/engine/tree/src/tree/mod.rs b/crates/engine/tree/src/tree/mod.rs index 56d69d3373..3dcc7f25fe 100644 --- a/crates/engine/tree/src/tree/mod.rs +++ b/crates/engine/tree/src/tree/mod.rs @@ -1708,7 +1708,7 @@ where /// /// Assumes that `finish` has been called on the `persistence_state` at least once fn on_new_persisted_block(&mut self) -> ProviderResult<()> { - // If we have an on-disk reorg, we need to handle it firsrt before touching the in-memory + // If we have an on-disk reorg, we need to handle it first before touching the in-memory // state. if let Some(remove_above) = self.find_disk_reorg()? { self.remove_blocks(remove_above);