aboutsummaryrefslogtreecommitdiff
path: root/src/model/channel/channel_id.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/model/channel/channel_id.rs')
-rw-r--r--src/model/channel/channel_id.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/model/channel/channel_id.rs b/src/model/channel/channel_id.rs
index acd3704..7ec6dfe 100644
--- a/src/model/channel/channel_id.rs
+++ b/src/model/channel/channel_id.rs
@@ -1,5 +1,5 @@
use internal::RwLockExt;
-use model::*;
+use model::prelude::*;
#[cfg(feature = "model")]
use std::borrow::Cow;
@@ -408,7 +408,7 @@ impl ChannelId {
/// Send files with the paths `/path/to/file.jpg` and `/path/to/file2.jpg`:
///
/// ```rust,no_run
- /// use serenity::model::ChannelId;
+ /// use serenity::model::id::ChannelId;
///
/// let channel_id = ChannelId(7);
///
@@ -420,7 +420,7 @@ impl ChannelId {
/// Send files using `File`:
///
/// ```rust,no_run
- /// use serenity::model::ChannelId;
+ /// use serenity::model::id::ChannelId;
/// use std::fs::File;
///
/// let channel_id = ChannelId(7);