diff options
author | 2024-07-26 11:01:33 +0200 | |
---|---|---|
committer | 2024-07-26 11:01:33 +0200 | |
commit | 555ee3e9c66010c9a90c3ef55d61fbffd48e669d (patch) | |
tree | 0e11497452dbf53332cdf0a2e7f946e2157e2aea /futures/src/subscription.rs | |
parent | f18f08bd617edbf58787ec4f379aa52c0ef292e2 (diff) | |
download | iced-555ee3e9c66010c9a90c3ef55d61fbffd48e669d.tar.gz iced-555ee3e9c66010c9a90c3ef55d61fbffd48e669d.tar.bz2 iced-555ee3e9c66010c9a90c3ef55d61fbffd48e669d.zip |
Fix lints for Rust 1.80
Diffstat (limited to 'futures/src/subscription.rs')
-rw-r--r-- | futures/src/subscription.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/futures/src/subscription.rs b/futures/src/subscription.rs index 1a0d454d..d2a0c3f8 100644 --- a/futures/src/subscription.rs +++ b/futures/src/subscription.rs @@ -313,9 +313,9 @@ impl<T> std::fmt::Debug for Subscription<T> { /// The repository has a couple of [examples] that use a custom [`Recipe`]: /// /// - [`download_progress`], a basic application that asynchronously downloads -/// a dummy file of 100 MB and tracks the download progress. +/// a dummy file of 100 MB and tracks the download progress. /// - [`stopwatch`], a watch with start/stop and reset buttons showcasing how -/// to listen to time. +/// 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 |