Skip to content

Commit

Permalink
Fix spelling (paritytech#1118)
Browse files Browse the repository at this point in the history
* I'm just trying to do my job

* spelling
  • Loading branch information
svyatonik authored and serban300 committed Apr 9, 2024
1 parent ec37ed3 commit 91e88a7
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion bridges/modules/messages/src/inbound_lane.rs
Expand Up @@ -53,7 +53,7 @@ pub enum ReceivalResult {
Dispatched(MessageDispatchResult),
/// Message has invalid nonce and lane has rejected to accept this message.
InvalidNonce,
/// There are too many unrewarded relayer entires at the lane.
/// There are too many unrewarded relayer entries at the lane.
TooManyUnrewardedRelayers,
/// There are too many unconfirmed messages at the lane.
TooManyUnconfirmedMessages,
Expand Down
2 changes: 1 addition & 1 deletion bridges/modules/messages/src/lib.rs
Expand Up @@ -1713,7 +1713,7 @@ mod tests {
#[test]
fn receive_messages_delivery_proof_rejects_proof_if_declared_relayers_state_is_invalid() {
run_test(|| {
// when number of relayers entires is invalid
// when number of relayers entries is invalid
assert_noop!(
Pallet::<TestRuntime>::receive_messages_delivery_proof(
Origin::signed(1),
Expand Down
2 changes: 1 addition & 1 deletion bridges/primitives/chain-westend/src/lib.rs
Expand Up @@ -65,7 +65,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
/// Westend Runtime `Call` enum.
///
/// The enum represents a subset of possible `Call`s we can send to Westend chain.
/// Ideally this code would be auto-generated from Metadata, because we want to
/// Ideally this code would be auto-generated from metadata, because we want to
/// avoid depending directly on the ENTIRE runtime just to get the encoding of `Dispatchable`s.
///
/// All entries here (like pretty much in the entire file) must be kept in sync with Westend
Expand Down
2 changes: 1 addition & 1 deletion bridges/relays/client-rococo/src/runtime.rs
Expand Up @@ -52,7 +52,7 @@ where
/// Rococo Runtime `Call` enum.
///
/// The enum represents a subset of possible `Call`s we can send to Rococo chain.
/// Ideally this code would be auto-generated from Metadata, because we want to
/// Ideally this code would be auto-generated from metadata, because we want to
/// avoid depending directly on the ENTIRE runtime just to get the encoding of `Dispatchable`s.
///
/// All entries here (like pretty much in the entire file) must be kept in sync with Rococo
Expand Down
2 changes: 1 addition & 1 deletion bridges/relays/client-wococo/src/runtime.rs
Expand Up @@ -52,7 +52,7 @@ where
/// Wococo Runtime `Call` enum.
///
/// The enum represents a subset of possible `Call`s we can send to Rococo chain.
/// Ideally this code would be auto-generated from Metadata, because we want to
/// Ideally this code would be auto-generated from metadata, because we want to
/// avoid depending directly on the ENTIRE runtime just to get the encoding of `Dispatchable`s.
///
/// All entries here (like pretty much in the entire file) must be kept in sync with Rococo
Expand Down
4 changes: 2 additions & 2 deletions bridges/relays/finality/src/finality_loop.rs
Expand Up @@ -49,10 +49,10 @@ pub struct FinalitySyncParams {
/// to the target chain => bridge applications will run faster, but pallet storage may explode
/// (but if pruning is there, then it's fine).
pub tick: Duration,
/// Number of finality proofs to keep in internal buffer between loop wakeups.
/// Number of finality proofs to keep in internal buffer between loop iterations.
///
/// While in "major syncing" state, we still read finality proofs from the stream. They're stored
/// in the internal buffer between loop wakeups. When we're close to the tip of the chain, we may
/// in the internal buffer between loop iterations. When we're close to the tip of the chain, we may
/// meet finality delays if headers are not finalized frequently. So instead of waiting for next
/// finality proof to appear in the stream, we may use existing proof from that buffer.
pub recent_finality_proofs_limit: usize,
Expand Down
Expand Up @@ -19,7 +19,7 @@
use relay_utils::metrics::F64SharedRef;
use std::{future::Future, time::Duration};

/// Duration between updater wakeups.
/// Duration between updater iterations.
const SLEEP_DURATION: Duration = Duration::from_secs(60);

/// Update-conversion-rate transaction status.
Expand Down

0 comments on commit 91e88a7

Please sign in to comment.