diff options
| author | Bond-009 <[email protected]> | 2017-08-18 18:54:45 +0200 |
|---|---|---|
| committer | alex <[email protected]> | 2017-08-18 18:54:45 +0200 |
| commit | a213c9c85dbe9fe488065fbf764cf6b2b4ff01da (patch) | |
| tree | a53a1ceca177e55bcc2b58351b7ed93e486e7cd4 /src/framework | |
| parent | Add a case for `context, message, args, full_message` (diff) | |
| download | serenity-a213c9c85dbe9fe488065fbf764cf6b2b4ff01da.tar.xz serenity-a213c9c85dbe9fe488065fbf764cf6b2b4ff01da.zip | |
Fix a failing test (#140)
Diffstat (limited to 'src/framework')
| -rw-r--r-- | src/framework/create_command.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/framework/create_command.rs b/src/framework/create_command.rs index 3bb019c..242c62f 100644 --- a/src/framework/create_command.rs +++ b/src/framework/create_command.rs @@ -50,7 +50,7 @@ impl CreateCommand { /// .desc("Replies to a ping with a pong") /// .exec(ping))); /// - /// fn ping(_context: &mut Context, message: &Message, _args: Vec<String>) -> Result<(), + /// fn ping(_context: &mut Context, message: &Message, _args: Vec<String>, _original_msg: String) -> Result<(), /// String> { /// let _ = message.channel_id.say("Pong!"); /// |