summaryrefslogtreecommitdiffstats
path: root/futures
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-02-15 03:22:53 +0100
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-02-15 03:22:53 +0100
commite9862f8913becb82073b03945049da067ff096e4 (patch)
tree12b83de487117174b74f8819dd817dbdf4c8a27d /futures
parent7555487503234cdac0646db8ed47ec652ccfe8f4 (diff)
downloadiced-e9862f8913becb82073b03945049da067ff096e4.tar.gz
iced-e9862f8913becb82073b03945049da067ff096e4.tar.bz2
iced-e9862f8913becb82073b03945049da067ff096e4.zip
Point doc links to `0.12` branch
Diffstat (limited to 'futures')
-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 e32227f6..7537c022 100644
--- a/futures/src/subscription.rs
+++ b/futures/src/subscription.rs
@@ -138,9 +138,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.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
+/// [examples]: https://github.com/iced-rs/iced/tree/0.12/examples
+/// [`download_progress`]: https://github.com/iced-rs/iced/tree/0.12/examples/download_progress
+/// [`stopwatch`]: https://github.com/iced-rs/iced/tree/0.12/examples/stopwatch
pub trait Recipe {
/// The events that will be produced by a [`Subscription`] with this
/// [`Recipe`].
@@ -378,7 +378,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.10/examples/websocket
+/// [`websocket`]: https://github.com/iced-rs/iced/tree/0.12/examples/websocket
pub fn channel<I, Fut, Message>(
id: I,
size: usize,