diff options
Diffstat (limited to 'src/ext/framework')
| -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))), }; |