From 1789ed732f81f2d1af58223c88087f11bef51695 Mon Sep 17 00:00:00 2001 From: Joshy Orndorff Date: Fri, 8 Nov 2019 21:37:38 +0100 Subject: [PATCH] Fix minor comment typo "do" -> "do not" (#4054) --- substrate/srml/example/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/substrate/srml/example/src/lib.rs b/substrate/srml/example/src/lib.rs index fb05e731bd..154ea63256 100644 --- a/substrate/srml/example/src/lib.rs +++ b/substrate/srml/example/src/lib.rs @@ -489,7 +489,7 @@ decl_module! { // calls to be executed - we don't need to care why. Because it's privileged, we can // assume it's a one-off operation and substantial processing/storage/memory can be used // without worrying about gameability or attack scenarios. - // If you not specify `Result` explicitly as return value, it will be added automatically + // If you do not specify `Result` explicitly as return value, it will be added automatically // for you and `Ok(())` will be returned. #[weight = WeightForSetDummy::(>::from(100u32))] fn set_dummy(origin, #[compact] new_value: T::Balance) {