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.