fix some typos in node-template/runtime/src/lib.rs (#2737)

This commit is contained in:
Denis Andrejew
2019-05-30 23:04:05 +02:00
committed by Kian Peymani
parent d4e1bb518d
commit 1d6696a0ec
+3 -3
View File
@@ -155,7 +155,7 @@ impl indices::Trait for Runtime {
type ResolveHint = indices::SimpleResolveHint<Self::AccountId, Self::AccountIndex>;
/// Determine whether an account is dead.
type IsDeadAccount = Balances;
/// The uniquitous event type.
/// The ubiquitous event type.
type Event = Event;
}
@@ -172,7 +172,7 @@ impl balances::Trait for Runtime {
type OnFreeBalanceZero = ();
/// What to do if a new account is created.
type OnNewAccount = Indices;
/// The uniquitous event type.
/// The ubiquitous event type.
type Event = Event;
type TransactionPayment = ();
@@ -181,7 +181,7 @@ impl balances::Trait for Runtime {
}
impl sudo::Trait for Runtime {
/// The uniquitous event type.
/// The ubiquitous event type.
type Event = Event;
type Proposal = Call;
}