Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
Fix spelling (#3845)
Browse files Browse the repository at this point in the history
* Fix spelling

* Add missing entry

* Proper fix for KeyPair
  • Loading branch information
chevdor authored Sep 25, 2021
1 parent f9d3fb2 commit 8a75570
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 12 deletions.
2 changes: 2 additions & 0 deletions bridges/.config/lingua.dic
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ isn
io
js
keccak256/M
keypair/MS
KSM/S
Lane1
Lane2
Expand Down Expand Up @@ -101,6 +102,7 @@ parablock/MS
parachain/MS
parameterize/D
pallet_message_lane
plancks
polkadot/MS
pov-block/MS
PoA
Expand Down
2 changes: 1 addition & 1 deletion bridges/relays/bin-substrate/src/cli/derive_account.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ use structopt::StructOpt;
/// since messages sent over the bridge will be able to spend these.
#[derive(StructOpt)]
pub struct DeriveAccount {
/// A bridge instance to initalize.
/// A bridge instance to initialize.
#[structopt(possible_values = &FullBridge::variants(), case_insensitive = true)]
bridge: FullBridge,
/// Source-chain address to derive Target-chain address from.
Expand Down
2 changes: 1 addition & 1 deletion bridges/relays/bin-substrate/src/cli/encode_message.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ pub enum MessagePayload {
/// A `MessagePayload` to encode.
#[derive(StructOpt)]
pub struct EncodeMessage {
/// A bridge instance to initalize.
/// A bridge instance to initialize.
#[structopt(possible_values = &FullBridge::variants(), case_insensitive = true)]
bridge: FullBridge,
#[structopt(flatten)]
Expand Down
2 changes: 1 addition & 1 deletion bridges/relays/bin-substrate/src/cli/init_bridge.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ use structopt::{clap::arg_enum, StructOpt};
/// Initialize bridge pallet.
#[derive(StructOpt)]
pub struct InitBridge {
/// A bridge instance to initalize.
/// A bridge instance to initialize.
#[structopt(possible_values = &InitBridgeName::variants(), case_insensitive = true)]
bridge: InitBridgeName,
#[structopt(flatten)]
Expand Down
8 changes: 4 additions & 4 deletions bridges/relays/bin-substrate/src/cli/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ pub enum Command {
/// The message is being sent to the source chain, delivered to the target chain and dispatched
/// there.
SendMessage(send_message::SendMessage),
/// Generate SCALE-encoded `Call` for choosen network.
/// Generate SCALE-encoded `Call` for the chosen network.
///
/// The call can be used either as message payload or can be wrapped into a transaction
/// and executed on the chain directly.
Expand Down Expand Up @@ -235,7 +235,7 @@ pub trait CliChain: relay_substrate_client::Chain {

/// Bridge Message Payload type.
///
/// TODO [#854] This should be removed in favour of target-specifc types.
/// TODO [#854] This should be removed in favor of target-specifc types.
type MessagePayload;

/// Numeric value of SS58 format.
Expand Down Expand Up @@ -354,7 +354,7 @@ where
}

/// Create chain-specific set of configuration objects: connection parameters,
/// signing parameters and bridge initialisation parameters.
/// signing parameters and bridge initialization parameters.
#[macro_export]
macro_rules! declare_chain_options {
($chain:ident, $chain_prefix:ident) => {
Expand Down Expand Up @@ -385,7 +385,7 @@ macro_rules! declare_chain_options {
}

impl [<$chain SigningParams>] {
/// Parse signing params into chain-specific KeyPair.
/// Parse signing params into chain-specific `KeyPair`.
pub fn to_keypair<Chain: CliChain>(&self) -> anyhow::Result<Chain::KeyPair> {
use sp_core::crypto::Pair;

Expand Down
2 changes: 1 addition & 1 deletion bridges/relays/bin-substrate/src/messages_lane.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ pub trait SubstrateMessageLane: MessageLane {
const INBOUND_LANE_LATEST_RECEIVED_NONCE_METHOD: &'static str;
/// Name of the runtime method that returns latest confirmed (reward-paid) nonce at the target chain.
const INBOUND_LANE_LATEST_CONFIRMED_NONCE_METHOD: &'static str;
/// Numebr of the runtime method that returns state of "unrewarded relayers" set at the target chain.
/// Number of the runtime method that returns state of "unrewarded relayers" set at the target chain.
const INBOUND_LANE_UNREWARDED_RELAYERS_STATE: &'static str;

/// Name of the runtime method that returns id of best finalized source header at target chain.
Expand Down
2 changes: 1 addition & 1 deletion bridges/relays/bin-substrate/src/on_demand_headers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ async fn background_task<SourceChain, TargetChain, TargetSign>(
}
}

/// Returns `Some()` with inclusive range of headers which must be scanned for manadatory headers
/// Returns `Some()` with inclusive range of headers which must be scanned for mandatory headers
/// and the first of such headers must be submitted to the target node.
async fn mandatory_headers_scan_range<C: Chain>(
best_finalized_source_header_at_source: Option<C::BlockNumber>,
Expand Down
2 changes: 1 addition & 1 deletion bridges/relays/client-substrate/src/chain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ pub trait Chain: ChainBase + Clone {
type Call: Dispatchable + Debug;
/// Balance of an account in native tokens.
///
/// The chain may suport multiple tokens, but this particular type is for token that is used
/// The chain may support multiple tokens, but this particular type is for token that is used
/// to pay for transaction dispatch, to reward different relayers (headers, messages), etc.
type Balance: Parameter + Member + DeserializeOwned + Clone + Copy + CheckedSub + PartialOrd + SaturatingAdd + Zero;
}
Expand Down
4 changes: 2 additions & 2 deletions bridges/relays/client-substrate/src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ impl<C: Chain> std::fmt::Debug for Client<C> {
impl<C: Chain> Client<C> {
/// Returns client that is able to call RPCs on Substrate node over websocket connection.
///
/// This function will keep connecting to given Sustrate node until connection is established
/// This function will keep connecting to given Substrate node until connection is established
/// and is functional. If attempt fail, it will wait for `RECONNECT_DELAY` and retry again.
pub async fn new(params: ConnectionParams) -> Self {
loop {
Expand Down Expand Up @@ -224,7 +224,7 @@ impl<C: Chain> Client<C> {

/// Get the nonce of the given Substrate account.
///
/// Note: It's the caller's responsibility to make sure `account` is a valid ss58 address.
/// Note: It's the caller's responsibility to make sure `account` is a valid SS58 address.
pub async fn next_account_index(&self, account: C::AccountId) -> Result<C::Index> {
Ok(Substrate::<C>::system_account_next_index(&*self.client, account).await?)
}
Expand Down
2 changes: 2 additions & 0 deletions scripts/gitlab/lingua.dic
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,7 @@ shareable
Simnet/MS
spawn/SR
spawner
SS58
sr25519
startup/MS
stateful
Expand All @@ -235,6 +236,7 @@ substream
subsystem/MS
subsystems'
supermajority
SURI
systemwide
taskmanager/MS
TCP
Expand Down

0 comments on commit 8a75570

Please sign in to comment.