From 0e354a3f51bf5ba7038f31bb0955e0bd59d73abd Mon Sep 17 00:00:00 2001 From: Benjamin Bouvier Date: Sat, 1 Oct 2022 14:07:07 +0200 Subject: [PATCH] Add missing s to features crossbeam-channel example in docs --- notify/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notify/src/lib.rs b/notify/src/lib.rs index c0b32606..93dc7353 100644 --- a/notify/src/lib.rs +++ b/notify/src/lib.rs @@ -34,7 +34,7 @@ //! You can disable crossbeam-channel, letting notify fallback to std channels via //! //! ```toml -//! notify = { version = "5.0.0", default-features = false, feature=["macos_kqueue"] } +//! notify = { version = "5.0.0", default-features = false, features = ["macos_kqueue"] } //! // Alternatively macos_fsevent instead of macos_kqueue //! ``` //! Note the `macos_kqueue` requirement here, otherwise no backend is available on macos.