diff --git a/pallets/pallet-lottery/src/lib.rs b/pallets/pallet-lottery/src/lib.rs index 0d55ded13..991f25760 100644 --- a/pallets/pallet-lottery/src/lib.rs +++ b/pallets/pallet-lottery/src/lib.rs @@ -21,7 +21,7 @@ //! This pallet implements a no-loss-lottery by taking user deposits, generating excess funds by staking funds with [`pallet_parachain_staking`] //! and periodically selects a winner from participating users weighted by their deposit amount to receive a claim to the //! accrued excess funds. -//! Funds withdrawn from the the lottery are subject to a timelock determined by parachain-staking before they can be claimed. +//! Funds withdrawn from the lottery are subject to a timelock determined by parachain-staking before they can be claimed. //! //! ### Lottery Rules //! 1. A drawing is scheduled to happen every [`Config::DrawingInterval`] blocks. diff --git a/runtime/calamari/src/lib.rs b/runtime/calamari/src/lib.rs index aeea62ae3..fa3ef94fc 100644 --- a/runtime/calamari/src/lib.rs +++ b/runtime/calamari/src/lib.rs @@ -711,7 +711,7 @@ impl pallet_treasury::Config for Runtime { type WeightInfo = weights::pallet_treasury::SubstrateWeight; type SpendFunds = (); // Expects an implementation of `EnsureOrigin` with a `Success` generic, - // which is the the maximum amount that this origin is allowed to spend at a time. + // which is the maximum amount that this origin is allowed to spend at a time. type SpendOrigin = EnsureWithSuccess, AccountId, MaxBalance>; type Beneficiary = AccountId; type BeneficiaryLookup = IdentityLookup; diff --git a/runtime/manta/src/lib.rs b/runtime/manta/src/lib.rs index 5df9be762..f248f0160 100644 --- a/runtime/manta/src/lib.rs +++ b/runtime/manta/src/lib.rs @@ -882,7 +882,7 @@ impl pallet_treasury::Config for Runtime { type WeightInfo = weights::pallet_treasury::SubstrateWeight; type SpendFunds = (); // Expects an implementation of `EnsureOrigin` with a `Success` generic, - // which is the the maximum amount that this origin is allowed to spend at a time. + // which is the maximum amount that this origin is allowed to spend at a time. type SpendOrigin = EnsureWithSuccess, AccountId, MaxBalance>; type Beneficiary = AccountId; type BeneficiaryLookup = IdentityLookup;