From 1b166198424dd444b8aa7a41715dfb1a3ed5fb01 Mon Sep 17 00:00:00 2001 From: Nick DeCoursin Date: Tue, 24 Mar 2026 19:21:47 +0100 Subject: [PATCH] trpl comment --- packages/trpl/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/trpl/src/lib.rs b/packages/trpl/src/lib.rs index 02a1dd8248..f899dafe81 100644 --- a/packages/trpl/src/lib.rs +++ b/packages/trpl/src/lib.rs @@ -74,7 +74,7 @@ pub fn run(future: F) -> F::Output { block_on(future) } -/// Run two futures, taking whichever finishes first and canceling the other. +/// Run two futures, taking whichever finishes first and ignoring the other. /// /// Notice that this is built on [`futures::future::select`], which has the /// same overall semantics but does *not* drop the slower future. The idea there