aboutsummaryrefslogtreecommitdiff
path: root/src/framework/help_commands.rs
diff options
context:
space:
mode:
authorAndrej <[email protected]>2017-07-31 10:36:57 +0200
committeralex <[email protected]>2017-07-31 10:36:57 +0200
commit53dc3cb714e5e279dde02b15e2e353f71594eb74 (patch)
tree8a3f001a0264340b23401fbd79a40f211cfbe43f /src/framework/help_commands.rs
parentReuse `num` (diff)
downloadserenity-53dc3cb714e5e279dde02b15e2e353f71594eb74.tar.xz
serenity-53dc3cb714e5e279dde02b15e2e353f71594eb74.zip
Fix failing tests (#133)
Diffstat (limited to 'src/framework/help_commands.rs')
-rw-r--r--src/framework/help_commands.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/framework/help_commands.rs b/src/framework/help_commands.rs
index 6db3561..dec0053 100644
--- a/src/framework/help_commands.rs
+++ b/src/framework/help_commands.rs
@@ -6,7 +6,7 @@
//! embeds:
//!
//! ```rs,no_run
-//! use serenity::ext::framework::help_commands;
+//! use serenity::framework::help_commands;
//! use serenity::Client;
//! use std::env;
//!
@@ -63,7 +63,7 @@ fn remove_aliases(cmds: &HashMap<String, CommandOrAlias>) -> HashMap<&String, &I
/// # impl EventHandler for Handler {}
/// # let mut client = Client::new("token", Handler);
/// #
-/// use serenity::ext::framework::help_commands;
+/// use serenity::framework::help_commands;
/// use serenity::framework::BuiltinFramework;
///
/// client.with_framework(BuiltinFramework::new()
@@ -216,7 +216,7 @@ pub fn with_embeds(_: &mut Context,
/// # impl EventHandler for Handler {}
/// # let mut client = Client::new("token", Handler);
/// #
-/// use serenity::ext::framework::help_commands;
+/// use serenity::framework::help_commands;
/// use serenity::framework::BuiltinFramework;
///
/// client.with_framework(BuiltinFramework::new()