aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAustin Hellyer <[email protected]>2016-12-19 11:20:31 -0800
committerAustin Hellyer <[email protected]>2016-12-19 11:20:31 -0800
commit0984e36d3fc543f9b169b06eba388f0fa034d3e4 (patch)
tree9abfa695810dcd31927a4fb800b20fdbc8090759 /src
parentRemove image/thumbnail embed builders (diff)
downloadserenity-0984e36d3fc543f9b169b06eba388f0fa034d3e4.tar.xz
serenity-0984e36d3fc543f9b169b06eba388f0fa034d3e4.zip
Clarify command missing argument message
Diffstat (limited to 'src')
-rw-r--r--src/ext/framework/mod.rs2
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))),
};