From 6bd8ed85a73b548e85db59e08826690a6946fe49 Mon Sep 17 00:00:00 2001 From: Valan Baptist Mathuranayagam <84893551+valanm22@users.noreply.github.com> Date: Sun, 20 Jul 2025 09:54:56 +0530 Subject: [PATCH] Update ch17-01-futures-and-syntax.md --- src/ch17-01-futures-and-syntax.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ch17-01-futures-and-syntax.md b/src/ch17-01-futures-and-syntax.md index 5263ce1779..50f921d84b 100644 --- a/src/ch17-01-futures-and-syntax.md +++ b/src/ch17-01-futures-and-syntax.md @@ -365,7 +365,7 @@ enum Either { ``` The `race` function returns `Left` with the output from the first future -argument it finishes first, or `Right` with the output of the second future +argument if it finishes first, or `Right` with the output of the second future argument if that one finishes first. This matches the order the arguments appear in when calling the function: the first argument is to the left of the second argument.