Skip to content
Snippets Groups Projects
Commit 2b805559 authored by Squirrel's avatar Squirrel Committed by GitHub
Browse files

drive by spelling fixes (#12175)

parent 84acfd5f
No related merge requests found
......@@ -165,7 +165,7 @@ pub trait FrozenBalance<AssetId, AccountId, Balance> {
///
/// Under normal behaviour, the account balance should not go below the sum of this (if `Some`)
/// and the asset's minimum balance. However, the account balance may reasonably begin below
/// this sum (e.g. if less than the sum had ever been transfered into the account).
/// this sum (e.g. if less than the sum had ever been transferred into the account).
///
/// In special cases (privileged intervention) the account balance may also go below the sum.
///
......
......@@ -71,7 +71,7 @@ pub trait PalletsInfoAccess {
///
/// You probably don't want this function but `infos()` instead.
fn count() -> usize {
// for backwards compatibility with XCM-3, Mark is deprecated.
// for backwards compatibility with XCM-3, Mark as deprecated.
Self::infos().len()
}
......
......@@ -24,7 +24,7 @@ pub trait Inspect<AccountId>: super::Inspect<AccountId> {
}
pub trait Mutate<AccountId>: Inspect<AccountId> {
// Aprove a delegate account to spend an amount of tokens owned by an owner
// Approve a delegate account to spend an amount of tokens owned by an owner
fn approve(
asset: Self::AssetId,
owner: &AccountId,
......
......@@ -163,7 +163,7 @@ pub trait Balanced<AccountId>: Inspect<AccountId> {
/// **WARNING**
/// Do not use this directly unless you want trouble, since it allows you to alter account balances
/// without keeping the issuance up to date. It has no safeguards against accidentally creating
/// token imbalances in your system leading to accidental imflation or deflation. It's really just
/// token imbalances in your system leading to accidental inflation or deflation. It's really just
/// for the underlying datatype to implement so the user gets the much safer `Balanced` trait to
/// use.
pub trait Unbalanced<AccountId>: Inspect<AccountId> {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment