aboutsummaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authorZeyla Hellyer <[email protected]>2017-11-11 10:05:33 -0800
committerZeyla Hellyer <[email protected]>2017-11-11 10:05:33 -0800
commit348d52b50780109a77a5223d2ede8e0b9a490cfd (patch)
tree1049f8ab6be8f9b22ec69a3746ae37a90c6f6a62 /src/utils
parentSimplify Error's `Display` impl (diff)
downloadserenity-348d52b50780109a77a5223d2ede8e0b9a490cfd.tar.xz
serenity-348d52b50780109a77a5223d2ede8e0b9a490cfd.zip
Re-order use statements alphabetically
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/message_builder.rs2
-rw-r--r--src/utils/mod.rs1
2 files changed, 1 insertions, 2 deletions
diff --git a/src/utils/message_builder.rs b/src/utils/message_builder.rs
index c00cd0a..5dcf018 100644
--- a/src/utils/message_builder.rs
+++ b/src/utils/message_builder.rs
@@ -1,7 +1,7 @@
+use model::{ChannelId, Emoji, Mentionable, RoleId, UserId};
use std::default::Default;
use std::fmt::{self, Display, Write};
use std::ops::Add;
-use model::{ChannelId, Emoji, Mentionable, RoleId, UserId};
/// The Message Builder is an ergonomic utility to easily build a message,
/// by adding text and mentioning mentionable structs.
diff --git a/src/utils/mod.rs b/src/utils/mod.rs
index 5783c41..6291f81 100644
--- a/src/utils/mod.rs
+++ b/src/utils/mod.rs
@@ -2,7 +2,6 @@
//! fully use the library.
mod colour;
-
mod message_builder;
pub use self::colour::Colour;