diff options
| author | Zeyla Hellyer <[email protected]> | 2017-11-11 10:05:33 -0800 |
|---|---|---|
| committer | Zeyla Hellyer <[email protected]> | 2017-11-11 10:05:33 -0800 |
| commit | 348d52b50780109a77a5223d2ede8e0b9a490cfd (patch) | |
| tree | 1049f8ab6be8f9b22ec69a3746ae37a90c6f6a62 /src/framework/standard/help_commands.rs | |
| parent | Simplify Error's `Display` impl (diff) | |
| download | serenity-348d52b50780109a77a5223d2ede8e0b9a490cfd.tar.xz serenity-348d52b50780109a77a5223d2ede8e0b9a490cfd.zip | |
Re-order use statements alphabetically
Diffstat (limited to 'src/framework/standard/help_commands.rs')
| -rw-r--r-- | src/framework/standard/help_commands.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/framework/standard/help_commands.rs b/src/framework/standard/help_commands.rs index 8cbcb21..1e17c04 100644 --- a/src/framework/standard/help_commands.rs +++ b/src/framework/standard/help_commands.rs @@ -23,15 +23,15 @@ //! [`plain`]: fn.plain.html //! [`with_embeds`]: fn.with_embeds.html +use client::Context; +use framework::standard::{has_correct_roles, has_correct_permissions}; +use model::{ChannelId, Message}; use std::collections::HashMap; use std::sync::Arc; use std::fmt::Write; use super::command::InternalCommand; use super::{Args, Command, CommandGroup, CommandOrAlias, CommandError}; -use client::Context; -use model::{ChannelId, Message}; use utils::Colour; -use framework::standard::{has_correct_roles, has_correct_permissions}; fn error_embed(channel_id: &ChannelId, input: &str) { let _ = channel_id.send_message(|m| { |