diff --git a/contracts/test/LightClient.t.sol b/contracts/test/LightClient.t.sol index 8b71845da3..882fdf7928 100644 --- a/contracts/test/LightClient.t.sol +++ b/contracts/test/LightClient.t.sol @@ -109,7 +109,7 @@ contract LightClient_constructor_Test is LightClientCommonTest { lc = new LCMock(_genesis, _genesisStakeTableState, _stateHistoryRetentionPeriod); } - // test that initiazing the contract reverts when the stateHistoryRetentionPeriod is below the + // test that initializing the contract reverts when the stateHistoryRetentionPeriod is below the // required threshold function test_RevertWhen_InvalidStateHistoryRetentionPeriodOnSetUp() public { uint32 invalidRetentionPeriod = 10; diff --git a/sequencer/src/api.rs b/sequencer/src/api.rs index 21b1fe343a..647b5d6044 100644 --- a/sequencer/src/api.rs +++ b/sequencer/src/api.rs @@ -2452,7 +2452,7 @@ mod test { ); receive_count += 1; if receive_count > total_count { - tracing::info!("Client Received atleast desired events, exiting loop"); + tracing::info!("Client Received at least desired events, exiting loop"); break; } }