summaryrefslogtreecommitdiffstats
path: root/tokio-sync/src/mpsc/unbounded.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tokio-sync/src/mpsc/unbounded.rs')
-rw-r--r--tokio-sync/src/mpsc/unbounded.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/tokio-sync/src/mpsc/unbounded.rs b/tokio-sync/src/mpsc/unbounded.rs
index 2760b845..e4b99a75 100644
--- a/tokio-sync/src/mpsc/unbounded.rs
+++ b/tokio-sync/src/mpsc/unbounded.rs
@@ -100,8 +100,6 @@ impl<T> UnboundedReceiver<T> {
/// # Examples
///
/// ```
- /// #![feature(async_await)]
- ///
/// use tokio::sync::mpsc;
///
/// #[tokio::main]
@@ -120,8 +118,6 @@ impl<T> UnboundedReceiver<T> {
/// Values are buffered:
///
/// ```
- /// #![feature(async_await)]
- ///
/// use tokio::sync::mpsc;
///
/// #[tokio::main]