diff --git a/docker/calamari.Dockerfile b/docker/calamari.Dockerfile index 2170dd4d2..8f942c015 100644 --- a/docker/calamari.Dockerfile +++ b/docker/calamari.Dockerfile @@ -22,7 +22,7 @@ RUN apt-get install -yq openssl libssl-dev RUN mkdir -p /usr/local/bin RUN mkdir -p /usr/share -# Dowload latest calamari binary +# Download latest calamari binary ADD $PARA_BINARY_URL $PARA_BINARY_PATH RUN chmod +x $PARA_BINARY_PATH RUN ldd $PARA_BINARY_PATH diff --git a/pallets/manta-pay/src/lib.rs b/pallets/manta-pay/src/lib.rs index e5567551c..16a556862 100644 --- a/pallets/manta-pay/src/lib.rs +++ b/pallets/manta-pay/src/lib.rs @@ -503,7 +503,7 @@ pub mod pallet { /// Transfer Ledger Wrong Checksum Error TransferLedgerChecksumError, - /// Transfer Ledger `VerifyingContext` cannont be decoded + /// Transfer Ledger `VerifyingContext` can not be decoded TransferLedgerVerifyingContextDecodeError, /// Transer Ledger Field Element Encoding Error diff --git a/pallets/pallet-lottery/src/tests.rs b/pallets/pallet-lottery/src/tests.rs index 37d48cd3b..069f4fe42 100644 --- a/pallets/pallet-lottery/src/tests.rs +++ b/pallets/pallet-lottery/src/tests.rs @@ -1737,7 +1737,7 @@ fn many_deposit_withdrawals_work() { roll_to_round_begin(round_count * 2); reward_collators_for_round(round_count * 2 - 1, all_collators); // drawing happens (twice), all unstaking collators have finished unstaking - // ensure lottery doesnt run out of gas (it's not getting staking rewards in test) + // ensure lottery doesn't run out of gas (it's not getting staking rewards in test) assert_ok!( ::Currency::deposit_into_existing( &crate::Pallet::::account_id(), diff --git a/scripts/github/extrinsic-ordering-filter.sh b/scripts/github/extrinsic-ordering-filter.sh index 75ab6195d..6eb519ef1 100644 --- a/scripts/github/extrinsic-ordering-filter.sh +++ b/scripts/github/extrinsic-ordering-filter.sh @@ -6,7 +6,7 @@ FILE=$1 -# Higlight indexes that were deleted +# Highlight indexes that were deleted function find_deletions() { echo "\n## Deletions\n" RES=$(cat "$FILE" | grep -n '\[\-\]' | tr -s " ")