diff options
Diffstat (limited to 'src/framework/standard/configuration.rs')
| -rw-r--r-- | src/framework/standard/configuration.rs | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/framework/standard/configuration.rs b/src/framework/standard/configuration.rs index d54a821..bcb0119 100644 --- a/src/framework/standard/configuration.rs +++ b/src/framework/standard/configuration.rs @@ -96,7 +96,7 @@ impl Configuration { /// /// Create a HashSet in-place: /// - /// ```rust + /// ```rust,no_run /// # use serenity::prelude::*; /// # struct Handler; /// # @@ -121,7 +121,7 @@ impl Configuration { /// /// Create a HashSet in-place: /// - /// ```rust + /// ```rust,no_run /// # use serenity::prelude::*; /// # struct Handler; /// # @@ -159,7 +159,7 @@ impl Configuration { /// /// Ignore a set of commands, assuming they exist: /// - /// ```rust + /// ```rust,no_run /// # use serenity::prelude::*; /// # struct Handler; /// # @@ -282,7 +282,7 @@ impl Configuration { /// /// Create a HashSet in-place: /// - /// ```rust + /// ```rust,no_run /// # use serenity::prelude::*; /// # struct Handler; /// # @@ -297,7 +297,7 @@ impl Configuration { /// /// Create a HashSet beforehand: /// - /// ```rust + /// ```rust,no_run /// # use serenity::prelude::*; /// # struct Handler; /// # @@ -326,7 +326,7 @@ impl Configuration { /// /// Assign a basic prefix: /// - /// ```rust + /// ```rust,no_run /// # use serenity::prelude::*; /// # struct Handler; /// # @@ -351,7 +351,7 @@ impl Configuration { /// /// Assign a set of prefixes the bot can respond to: /// - /// ```rust + /// ```rust,no_run /// # use serenity::prelude::*; /// # struct Handler; /// # @@ -375,7 +375,7 @@ impl Configuration { /// /// Have the args be seperated by a comma and a space: /// - /// ```rust + /// ```rust,no_run /// # use serenity::prelude::*; /// # struct Handler; /// # @@ -400,7 +400,7 @@ impl Configuration { /// /// Have the args be seperated by a comma and a space; and a regular space: /// - /// ```rust + /// ```rust,no_run /// # use serenity::prelude::*; /// # struct Handler; /// # |