summaryrefslogtreecommitdiffstats
path: root/tokio-sync/src/mpsc/bounded.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tokio-sync/src/mpsc/bounded.rs')
-rw-r--r--tokio-sync/src/mpsc/bounded.rs8
1 files changed, 0 insertions, 8 deletions
diff --git a/tokio-sync/src/mpsc/bounded.rs b/tokio-sync/src/mpsc/bounded.rs
index 4f6f1ac6..711173ae 100644
--- a/tokio-sync/src/mpsc/bounded.rs
+++ b/tokio-sync/src/mpsc/bounded.rs
@@ -82,8 +82,6 @@ pub struct RecvError(());
/// # Examples
///
/// ```rust
-/// #![feature(async_await)]
-///
/// use tokio::sync::mpsc;
///
/// #[tokio::main]
@@ -132,8 +130,6 @@ impl<T> Receiver<T> {
/// # Examples
///
/// ```
- /// #![feature(async_await)]
- ///
/// use tokio::sync::mpsc;
///
/// #[tokio::main]
@@ -152,8 +148,6 @@ impl<T> Receiver<T> {
/// Values are buffered:
///
/// ```
- /// #![feature(async_await)]
- ///
/// use tokio::sync::mpsc;
///
/// #[tokio::main]
@@ -221,8 +215,6 @@ impl<T> Sender<T> {
/// previously sent value was received.
///
/// ```rust
- /// #![feature(async_await)]
- ///
/// use tokio::sync::mpsc;
///
/// #[tokio::main]