From 78b12eb538084f81e0f6c25a82438a613cd8cafb Mon Sep 17 00:00:00 2001 From: Ruben De Smet Date: Sun, 3 Nov 2019 20:02:58 +0100 Subject: [PATCH] Update futures-util/src/async_await/select_mod.rs Co-Authored-By: Taiki Endo --- futures-util/src/async_await/select_mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/futures-util/src/async_await/select_mod.rs b/futures-util/src/async_await/select_mod.rs index 0d2ea7d2c9..221b6fdbdd 100644 --- a/futures-util/src/async_await/select_mod.rs +++ b/futures-util/src/async_await/select_mod.rs @@ -32,7 +32,7 @@ macro_rules! document_select_macro { /// It is also gated behind the `async-await` feature of this library, which is /// _not_ activated by default. /// - /// **Warning**: `select!` relies on `proc-macro-hack`, and may require to set the + /// Note that `select!` relies on `proc-macro-hack`, and may require to set the /// compiler's recursion limit very high, e.g. `#![recursion_limit="1024"]`. /// /// # Examples