diff options
author | 2025-01-24 16:38:56 +0100 | |
---|---|---|
committer | 2025-01-24 16:45:18 +0100 | |
commit | 3a07c631add426a308607055d1b46d934f21e7f6 (patch) | |
tree | b3562fa55b828d5cc64b41d10bd0820a26781613 /src/lib.rs | |
parent | 75a6f32a5ef49bb8e6d16506d84b07822a33c41b (diff) | |
download | iced-3a07c631add426a308607055d1b46d934f21e7f6.tar.gz iced-3a07c631add426a308607055d1b46d934f21e7f6.tar.bz2 iced-3a07c631add426a308607055d1b46d934f21e7f6.zip |
Implement `time::repeat` and simplify `Subscription::run_with`
Diffstat (limited to '')
-rw-r--r-- | src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -365,9 +365,9 @@ //! //! As with tasks, some modules expose convenient functions that build a [`Subscription`] for you—like //! [`time::every`] which can be used to listen to time, or [`keyboard::on_key_press`] which will notify you -//! of any key presses. But you can also create your own with [`Subscription::run`] and [`run_with_id`]. +//! of any key presses. But you can also create your own with [`Subscription::run`] and [`run_with`]. //! -//! [`run_with_id`]: Subscription::run_with_id +//! [`run_with`]: Subscription::run_with //! //! ## Scaling Applications //! The `update`, `view`, and `Message` triplet composes very nicely. |