From 06d924cce8d1cc32616c3543a3c36a48793396c0 Mon Sep 17 00:00:00 2001 From: Alan Smith Date: Sun, 19 May 2024 09:20:07 -0400 Subject: [PATCH] Changed example from kqueue to fsevent --- notify/src/lib.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/notify/src/lib.rs b/notify/src/lib.rs index 05a94bf6..eec16d88 100644 --- a/notify/src/lib.rs +++ b/notify/src/lib.rs @@ -36,10 +36,9 @@ //! You can disable crossbeam-channel, letting notify fallback to std channels via //! //! ```toml -//! notify = { version = "6.1.1", default-features = false, features = ["macos_kqueue"] } -//! // Alternatively macos_fsevent instead of macos_kqueue +//! notify = { version = "6.1.1", default-features = false, features = ["macos_fsevent"] } //! ``` -//! Note the `macos_kqueue` requirement here, otherwise no native backend is available on macos. +//! Note the `macos_fsevent` requirement here, otherwise no native backend is available on macos. //! //! # Known Problems //!