diff options
| author | Austin Hellyer <[email protected]> | 2016-12-19 11:20:31 -0800 |
|---|---|---|
| committer | Austin Hellyer <[email protected]> | 2016-12-19 11:20:31 -0800 |
| commit | 0984e36d3fc543f9b169b06eba388f0fa034d3e4 (patch) | |
| tree | 9abfa695810dcd31927a4fb800b20fdbc8090759 /src/ext/framework/mod.rs | |
| parent | Remove image/thumbnail embed builders (diff) | |
| download | serenity-0984e36d3fc543f9b169b06eba388f0fa034d3e4.tar.xz serenity-0984e36d3fc543f9b169b06eba388f0fa034d3e4.zip | |
Clarify command missing argument message
Diffstat (limited to 'src/ext/framework/mod.rs')
| -rw-r--r-- | src/ext/framework/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ext/framework/mod.rs b/src/ext/framework/mod.rs index 8047c20..67c2f19 100644 --- a/src/ext/framework/mod.rs +++ b/src/ext/framework/mod.rs @@ -148,7 +148,7 @@ macro_rules! command { arg_counter, stringify!($t))), }, - None => return Err(format!("Failed to parse argument #{} of type {:?}", + None => return Err(format!("Missing argument #{} of type {:?}", arg_counter, stringify!($t))), }; |