summaryrefslogtreecommitdiffstats
path: root/tokio/src/sync/notify.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tokio/src/sync/notify.rs')
-rw-r--r--tokio/src/sync/notify.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tokio/src/sync/notify.rs b/tokio/src/sync/notify.rs
index 17117bfe..922f1095 100644
--- a/tokio/src/sync/notify.rs
+++ b/tokio/src/sync/notify.rs
@@ -1,7 +1,7 @@
// Allow `unreachable_pub` warnings when sync is not enabled
-// due to the usage of `Notify` within the `rt-core` feature set.
+// due to the usage of `Notify` within the `rt` feature set.
// When this module is compiled with `sync` enabled we will warn on
-// this lint. When `rt-core` is enabled we use `pub(crate)` which
+// this lint. When `rt` is enabled we use `pub(crate)` which
// triggers this warning but it is safe to ignore in this case.
#![cfg_attr(not(feature = "sync"), allow(unreachable_pub, dead_code))]