summaryrefslogtreecommitdiffstats
path: root/futures/src/subscription.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-09-18 22:13:09 +0200
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-09-18 22:13:09 +0200
commitad74e4c69d9c7d65fcb3f081e76e358b60e0e51d (patch)
tree8092464bc58d04ca7076213bcfb4d537cd1997b0 /futures/src/subscription.rs
parent1ada297b082ffa79f7e56c14af20b359af745a2c (diff)
downloadiced-ad74e4c69d9c7d65fcb3f081e76e358b60e0e51d.tar.gz
iced-ad74e4c69d9c7d65fcb3f081e76e358b60e0e51d.tar.bz2
iced-ad74e4c69d9c7d65fcb3f081e76e358b60e0e51d.zip
Improve imports of `Subscription::run` doc example
Diffstat (limited to '')
-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>),