summaryrefslogtreecommitdiffstats
path: root/futures/src/subscription.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2023-07-28 19:48:39 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2023-07-28 19:48:39 +0200
commit126aef88e7647c4690055b4c96aee46ecadcf60e (patch)
tree3fea494e812839fa4c2034c6cb7468d36ccc3980 /futures/src/subscription.rs
parent78dc341ea82449f1e075e37e67c1ccf66b88e8d6 (diff)
downloadiced-126aef88e7647c4690055b4c96aee46ecadcf60e.tar.gz
iced-126aef88e7647c4690055b4c96aee46ecadcf60e.tar.bz2
iced-126aef88e7647c4690055b4c96aee46ecadcf60e.zip
Bump versions :tada:
Diffstat (limited to '')
-rw-r--r--futures/src/subscription.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/futures/src/subscription.rs b/futures/src/subscription.rs
index 0642a924..8f78ce3a 100644
--- a/futures/src/subscription.rs
+++ b/futures/src/subscription.rs
@@ -128,9 +128,9 @@ impl<Message> std::fmt::Debug for Subscription<Message> {
/// - [`stopwatch`], a watch with start/stop and reset buttons showcasing how
/// to listen to time.
///
-/// [examples]: https://github.com/iced-rs/iced/tree/0.9/examples
-/// [`download_progress`]: https://github.com/iced-rs/iced/tree/0.9/examples/download_progress
-/// [`stopwatch`]: https://github.com/iced-rs/iced/tree/0.9/examples/stopwatch
+/// [examples]: https://github.com/iced-rs/iced/tree/0.10/examples
+/// [`download_progress`]: https://github.com/iced-rs/iced/tree/0.10/examples/download_progress
+/// [`stopwatch`]: https://github.com/iced-rs/iced/tree/0.10/examples/stopwatch
pub trait Recipe {
/// The events that will be produced by a [`Subscription`] with this
/// [`Recipe`].
@@ -413,7 +413,7 @@ where
/// Check out the [`websocket`] example, which showcases this pattern to maintain a WebSocket
/// connection open.
///
-/// [`websocket`]: https://github.com/iced-rs/iced/tree/0.9/examples/websocket
+/// [`websocket`]: https://github.com/iced-rs/iced/tree/0.10/examples/websocket
pub fn channel<I, Fut, Message>(
id: I,
size: usize,