From 700ef193bd64b6eb1061a341bc6c4d56c7e7609b Mon Sep 17 00:00:00 2001 From: zak Date: Fri, 29 Mar 2019 17:36:21 +0900 Subject: [PATCH] fixed some typo (#2140) * fixed some typo * Update traits.rs --- substrate/srml/balances/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/substrate/srml/balances/src/lib.rs b/substrate/srml/balances/src/lib.rs index a6b64927f9..fa34bc43a0 100644 --- a/substrate/srml/balances/src/lib.rs +++ b/substrate/srml/balances/src/lib.rs @@ -69,7 +69,7 @@ //! - [`Imbalance`](https://crates.parity.io/srml_support/traits/trait.Imbalance.html): Functions for handling //! imbalances between total issuance in the system and account balances. Must be used when a function //! creates new funds (e.g. a reward) or destroys some funds (e.g. a system fee). -//! - [`MakePayent`](https://crates.parity.io/srml_support/traits/trait.MakePayment.html): Simple trait designed +//! - [`MakePayment`](https://crates.parity.io/srml_support/traits/trait.MakePayment.html): Simple trait designed //! for hooking into a transaction payment. //! - [`IsDeadAccount`](https://crates.parity.io/srml_system/trait.IsDeadAccount.html): Determiner to say whether a //! given account is unused.