aboutsummaryrefslogtreecommitdiff
path: root/src/framework/create_command.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/framework/create_command.rs')
-rw-r--r--src/framework/create_command.rs2
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!");
///