From 8b0262c5f0c5c311b5b7c5bb08f691c6eeb4cd61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ram=C3=B3n=20Jim=C3=A9nez?= Date: Tue, 2 Dec 2025 18:39:14 +0100 Subject: [PATCH] Fix broken documentation link --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 96cc009d..27561f2a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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 //!