diff options
Diffstat (limited to 'src/framework/mod.rs')
| -rw-r--r-- | src/framework/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/framework/mod.rs b/src/framework/mod.rs index 359882c..ad80e58 100644 --- a/src/framework/mod.rs +++ b/src/framework/mod.rs @@ -42,7 +42,7 @@ //! .configure(|c| c.prefix("~")) //! .on("about", |_, msg, _| { //! msg.channel_id.say("A simple test bot")?; -//! +//! //! // The `command!` macro implicitly puts an `Ok(())` at the end of each command definiton; //! // signifying successful execution. //! // |