From 8f20432c0271a86e7cc31fb0612e690157e8c74d Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Fri, 2 Oct 2020 02:50:31 +0900 Subject: [PATCH] Remove truncated paragraphs from select! docs (#2222) --- futures-util/src/async_await/select_mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/futures-util/src/async_await/select_mod.rs b/futures-util/src/async_await/select_mod.rs index 098e883bfe..b4af6bfdb3 100644 --- a/futures-util/src/async_await/select_mod.rs +++ b/futures-util/src/async_await/select_mod.rs @@ -14,7 +14,7 @@ macro_rules! document_select_macro { /// (e.g. an `async fn` call) instead of a `Future` by name the `Unpin` /// requirement is relaxed, since the macro will pin the resulting `Future` /// on the stack. However the `Future` returned by the expression must - /// still implement `FusedFuture`. This difference is presented + /// still implement `FusedFuture`. /// /// Futures and streams which are not already fused can be fused using the /// `.fuse()` method. Note, though, that fusing a future or stream directly @@ -167,7 +167,7 @@ macro_rules! document_select_macro { /// (e.g. an `async fn` call) instead of a `Future` by name the `Unpin` /// requirement is relaxed, since the macro will pin the resulting `Future` /// on the stack. However the `Future` returned by the expression must - /// still implement `FusedFuture`. This difference is presented + /// still implement `FusedFuture`. /// /// Futures and streams which are not already fused can be fused using the /// `.fuse()` method. Note, though, that fusing a future or stream directly