summaryrefslogtreecommitdiffstats
path: root/futures
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-07-26 11:01:33 +0200
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-07-26 11:01:33 +0200
commit555ee3e9c66010c9a90c3ef55d61fbffd48e669d (patch)
tree0e11497452dbf53332cdf0a2e7f946e2157e2aea /futures
parentf18f08bd617edbf58787ec4f379aa52c0ef292e2 (diff)
downloadiced-555ee3e9c66010c9a90c3ef55d61fbffd48e669d.tar.gz
iced-555ee3e9c66010c9a90c3ef55d61fbffd48e669d.tar.bz2
iced-555ee3e9c66010c9a90c3ef55d61fbffd48e669d.zip
Fix lints for Rust 1.80
Diffstat (limited to 'futures')
-rw-r--r--futures/src/subscription.rs4
-rw-r--r--futures/src/subscription/tracker.rs6
2 files changed, 5 insertions, 5 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
diff --git a/futures/src/subscription/tracker.rs b/futures/src/subscription/tracker.rs
index f17e3ea3..6daead24 100644
--- a/futures/src/subscription/tracker.rs
+++ b/futures/src/subscription/tracker.rs
@@ -42,10 +42,10 @@ impl Tracker {
/// method:
///
/// - If the provided [`Subscription`] contains a new [`Recipe`] that is
- /// currently not being run, it will spawn a new stream and keep it alive.
+ /// currently not being run, it will spawn a new stream and keep it alive.
/// - On the other hand, if a [`Recipe`] is currently in execution and the
- /// provided [`Subscription`] does not contain it anymore, then the
- /// [`Tracker`] will close and drop the relevant stream.
+ /// provided [`Subscription`] does not contain it anymore, then the
+ /// [`Tracker`] will close and drop the relevant stream.
///
/// It returns a list of futures that need to be spawned to materialize
/// the [`Tracker`] changes.