Fix broken documentation link

This commit is contained in:
Héctor Ramón Jiménez 2025-12-02 18:39:14 +01:00
parent c3b94a9158
commit 8b0262c5f0
No known key found for this signature in database
GPG key ID: 7CC46565708259A7

View file

@ -368,8 +368,8 @@
//! visible widgets of your user interface, at every moment.
//!
//! 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`].
//! [`time::every`] which can be used to listen to time, or [`keyboard::listen`] which will notify you
//! of any keyboard events. But you can also create your own with [`Subscription::run`] and [`run_with`].
//!
//! [`run_with`]: Subscription::run_with
//!