summaryrefslogtreecommitdiffstats
path: root/tokio-macros
diff options
context:
space:
mode:
authorTaiki Endo <te316e89@gmail.com>2019-08-21 12:07:16 +0900
committerCarl Lerche <me@carllerche.com>2019-08-20 20:07:16 -0700
commita791f4a758604768463d3ca2162b913dcea34c40 (patch)
tree80037a52d5249eee268d99aa84525f9c017e0aea /tokio-macros
parent7e7a5147a3f5de83ee540ebaad0928183e61df2c (diff)
chore: bump to newer nightly (#1485)
Diffstat (limited to 'tokio-macros')
-rw-r--r--tokio-macros/src/lib.rs6
1 files changed, 0 insertions, 6 deletions
diff --git a/tokio-macros/src/lib.rs b/tokio-macros/src/lib.rs
index 7b72cca2..3b2bf2ad 100644
--- a/tokio-macros/src/lib.rs
+++ b/tokio-macros/src/lib.rs
@@ -26,8 +26,6 @@ use quote::quote;
/// ### Select runtime
///
/// ```rust
-///#![feature(async_await)]
-///
/// #[tokio::main(single_thread)]
/// async fn main() {
/// println!("Hello world");
@@ -36,8 +34,6 @@ use quote::quote;
/// ### Using default
///
/// ```rust
-///#![feature(async_await)]
-///
/// #[tokio::main]
/// async fn main() {
/// println!("Hello world");
@@ -116,8 +112,6 @@ pub fn main(args: TokenStream, item: TokenStream) -> TokenStream {
/// # Examples
///
/// ```no_run
-/// #![feature(async_await)]
-///
/// #[tokio::test]
/// async fn my_test() {
/// assert!(true);