summaryrefslogtreecommitdiffstats
path: root/tokio-sync/src/watch.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tokio-sync/src/watch.rs')
-rw-r--r--tokio-sync/src/watch.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/tokio-sync/src/watch.rs b/tokio-sync/src/watch.rs
index 8067ed3b..1841fd0a 100644
--- a/tokio-sync/src/watch.rs
+++ b/tokio-sync/src/watch.rs
@@ -18,8 +18,6 @@
//! # Examples
//!
//! ```
-//! #![feature(async_await)]
-//!
//! use tokio::sync::watch;
//!
//! # async fn dox() -> Result<(), Box<dyn std::error::Error>> {
@@ -171,8 +169,6 @@ const CLOSED: usize = 1;
/// # Examples
///
/// ```
-/// #![feature(async_await)]
-///
/// use tokio::sync::watch;
///
/// # async fn dox() -> Result<(), Box<dyn std::error::Error>> {