From f624667d3b111564533a635c126028a54a664a0c Mon Sep 17 00:00:00 2001 From: naglis <827324+naglis@users.noreply.github.com> Date: Wed, 13 Mar 2024 11:18:21 +0200 Subject: [PATCH] Remove mention of immediate mode in the docs Notion of "immediate mode" was removed in https://github.com/notify-rs/notify/pull/336. --- notify/src/lib.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/notify/src/lib.rs b/notify/src/lib.rs index 40d7fa03..89a742e8 100644 --- a/notify/src/lib.rs +++ b/notify/src/lib.rs @@ -411,10 +411,7 @@ pub type RecommendedWatcher = KqueueWatcher; )))] pub type RecommendedWatcher = PollWatcher; -/// Convenience method for creating the `RecommendedWatcher` for the current platform in -/// _immediate_ mode. -/// -/// See [`Watcher::new_immediate`](trait.Watcher.html#tymethod.new_immediate). +/// Convenience method for creating the `RecommendedWatcher` for the current platform. pub fn recommended_watcher(event_handler: F) -> Result where F: EventHandler,