diff options
author | 2024-09-18 02:38:49 +0200 | |
---|---|---|
committer | 2024-09-18 02:38:49 +0200 | |
commit | 40ea3dabff991843396d4703d485169d0dd90845 (patch) | |
tree | f1c38d25133c1f161945b35bc65c9d9b745190a0 /futures | |
parent | 5a51d19e270e5df7a91e1e953ec9b38250227578 (diff) | |
download | iced-40ea3dabff991843396d4703d485169d0dd90845.tar.gz iced-40ea3dabff991843396d4703d485169d0dd90845.tar.bz2 iced-40ea3dabff991843396d4703d485169d0dd90845.zip |
Bump version to `0.13.0` :tada:
Diffstat (limited to 'futures')
-rw-r--r-- | futures/src/subscription.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/futures/src/subscription.rs b/futures/src/subscription.rs index d2a0c3f8..946995d8 100644 --- a/futures/src/subscription.rs +++ b/futures/src/subscription.rs @@ -190,7 +190,7 @@ impl<T> Subscription<T> { /// Check out the [`websocket`] example, which showcases this pattern to maintain a `WebSocket` /// connection open. /// - /// [`websocket`]: https://github.com/iced-rs/iced/tree/0.12/examples/websocket + /// [`websocket`]: https://github.com/iced-rs/iced/tree/0.13/examples/websocket pub fn run<S>(builder: fn() -> S) -> Self where S: Stream<Item = T> + MaybeSend + 'static, @@ -317,9 +317,9 @@ impl<T> std::fmt::Debug for Subscription<T> { /// - [`stopwatch`], a watch with start/stop and reset buttons showcasing how /// to listen to time. /// -/// [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 +/// [examples]: https://github.com/iced-rs/iced/tree/0.13/examples +/// [`download_progress`]: https://github.com/iced-rs/iced/tree/0.13/examples/download_progress +/// [`stopwatch`]: https://github.com/iced-rs/iced/tree/0.13/examples/stopwatch pub trait Recipe { /// The events that will be produced by a [`Subscription`] with this /// [`Recipe`]. |