summaryrefslogtreecommitdiffstats
path: root/futures/src/subscription.rs
diff options
context:
space:
mode:
Diffstat (limited to 'futures/src/subscription.rs')
-rw-r--r--futures/src/subscription.rs15
1 files changed, 10 insertions, 5 deletions
diff --git a/futures/src/subscription.rs b/futures/src/subscription.rs
index 946995d8..8067c259 100644
--- a/futures/src/subscription.rs
+++ b/futures/src/subscription.rs
@@ -138,11 +138,16 @@ impl<T> Subscription<T> {
/// and returning the `Sender` as a `Message` for the `Application`:
///
/// ```
- /// use iced_futures::subscription::{self, Subscription};
- /// use iced_futures::stream;
- /// use iced_futures::futures::channel::mpsc;
- /// use iced_futures::futures::sink::SinkExt;
- /// use iced_futures::futures::Stream;
+ /// # mod iced {
+ /// # pub use iced_futures::Subscription;
+ /// # pub use iced_futures::futures;
+ /// # pub use iced_futures::stream;
+ /// # }
+ /// use iced::futures::channel::mpsc;
+ /// use iced::futures::sink::SinkExt;
+ /// use iced::futures::Stream;
+ /// use iced::stream;
+ /// use iced::Subscription;
///
/// pub enum Event {
/// Ready(mpsc::Sender<Input>),