From 7b68b153248af3b8b964a3b1228b79bb345d1c5b Mon Sep 17 00:00:00 2001 From: Waffle Maybe Date: Mon, 25 Sep 2023 20:54:02 +0400 Subject: [PATCH] Remove an outdated comment from docs (#2774) --- futures-util/src/future/future/mod.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/futures-util/src/future/future/mod.rs b/futures-util/src/future/future/mod.rs index c11d108207..955af3776a 100644 --- a/futures-util/src/future/future/mod.rs +++ b/futures-util/src/future/future/mod.rs @@ -463,10 +463,6 @@ pub trait FutureExt: Future { /// ``` /// /// ``` - /// // Note, unlike most examples this is written in the context of a - /// // synchronous function to better illustrate the cross-thread aspect of - /// // the `shared` combinator. - /// /// # futures::executor::block_on(async { /// use futures::future::FutureExt; /// use futures::executor::block_on;