diff --git a/README.md b/README.md index 88ded294c..998edd0bb 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ Manta/Calamari's version number: where: * `` is the major version, i.e. major product release. -* `` is the middle verison, i.e. adding major features. +* `` is the middle version, i.e. adding major features. * `` is the minor version, i.e. performance improvement and bug fixes. ## Contributing diff --git a/pallets/asset-manager/src/lib.rs b/pallets/asset-manager/src/lib.rs index 4554a726a..4be1e3a2c 100644 --- a/pallets/asset-manager/src/lib.rs +++ b/pallets/asset-manager/src/lib.rs @@ -419,7 +419,7 @@ pub mod pallet { #[pallet::getter(fn get_para_id)] pub type AllowedDestParaIds = StorageMap<_, Blake2_128Concat, ParaId, AssetCount>; - /// Multilocation of assets that should not be transfered out of the chain + /// Multilocation of assets that should not be transferred out of the chain #[pallet::storage] #[pallet::getter(fn get_filtered_location)] pub type FilteredOutgoingAssetLocations = diff --git a/pallets/manta-pay/src/lib.rs b/pallets/manta-pay/src/lib.rs index 3d748ef04..4f2d79ca2 100644 --- a/pallets/manta-pay/src/lib.rs +++ b/pallets/manta-pay/src/lib.rs @@ -472,7 +472,7 @@ pub mod pallet { /// Sender Ledger [`OutgoingNote`] failed to decode SenderLedgerOutgoingNodeDecodeFailed, - /// Reciever Ledger Utxo decode failed + /// Receiver Ledger Utxo decode failed ReceiverLedgerUtxoDecodeFailed, /// Receiver Ledger Wrong Checksum Error diff --git a/pallets/manta-sbt/src/lib.rs b/pallets/manta-sbt/src/lib.rs index 02263cbcc..d120547c0 100644 --- a/pallets/manta-sbt/src/lib.rs +++ b/pallets/manta-sbt/src/lib.rs @@ -800,7 +800,7 @@ pub mod pallet { SBTReserved { /// Public Account reserving SBT mints who: T::AccountId, - /// Account which recieves reserved AssetIds, can be the same as the above account + /// Account which receives reserved AssetIds, can be the same as the above account reserve_account: T::AccountId, /// Start of `AssetIds` reserved for use on private ledger start_id: StandardAssetId, @@ -979,7 +979,7 @@ pub mod pallet { /// Sender Ledger [`OutgoingNote`] failed to decode SenderLedgerOutgoingNodeDecodeFailed, - /// Reciever Ledger Utxo decode failed + /// Receiver Ledger Utxo decode failed ReceiverLedgerUtxoDecodeFailed, /// Receiver Ledger Wrong Checksum Error diff --git a/pallets/vesting/src/lib.rs b/pallets/vesting/src/lib.rs index edae3a28c..4ee18bc9e 100644 --- a/pallets/vesting/src/lib.rs +++ b/pallets/vesting/src/lib.rs @@ -180,11 +180,11 @@ pub mod pallet { let now = T::Timestamp::now().as_secs(); for (n, o) in new_schedule.iter().zip(old_schedule.iter()) { - // n == o means we will partialy update vesting schedule. + // n == o means we will partially update vesting schedule. // n > o means new schedule is future schedule. // n < o && n > now, also fine. if o.1 <= now { - // Check partialy updating vesting schedule. + // Check partially updating vesting schedule. // We don't change past schedule, just skip it. ensure!(*n == o.1, Error::::InvalidSchedule); } else {