summaryrefslogtreecommitdiffstats
path: root/tokio-sync/src/oneshot.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tokio-sync/src/oneshot.rs')
-rw-r--r--tokio-sync/src/oneshot.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/tokio-sync/src/oneshot.rs b/tokio-sync/src/oneshot.rs
index dbb766d1..04401b9f 100644
--- a/tokio-sync/src/oneshot.rs
+++ b/tokio-sync/src/oneshot.rs
@@ -93,8 +93,6 @@ struct State(usize);
/// # Examples
///
/// ```
-/// #![feature(async_await)]
-///
/// use tokio::sync::oneshot;
///
/// #[tokio::main]
@@ -208,8 +206,6 @@ impl<T> Sender<T> {
/// # Examples
///
/// ```
- /// #![feature(async_await)]
- ///
/// use tokio::sync::oneshot;
///
/// #[tokio::main]