aboutsummaryrefslogtreecommitdiff
path: root/src/framework/mod.rs
diff options
context:
space:
mode:
authorZeyla Hellyer <[email protected]>2018-06-17 15:53:09 -0700
committerZeyla Hellyer <[email protected]>2018-06-17 15:53:09 -0700
commit6ddfef8359a619be9a49be7b33b466724eed0ecb (patch)
tree5fb9c070b1650b95aa6b5713b3630fc253095275 /src/framework/mod.rs
parentFix Args test (diff)
downloadserenity-6ddfef8359a619be9a49be7b33b466724eed0ecb.tar.xz
serenity-6ddfef8359a619be9a49be7b33b466724eed0ecb.zip
Remove extraneous spaces at the end of lines
Diffstat (limited to 'src/framework/mod.rs')
-rw-r--r--src/framework/mod.rs2
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.
//! //