diff --git a/lib/race.js b/lib/race.js index 693762787..db7ded3f3 100644 --- a/lib/race.js +++ b/lib/race.js @@ -4,7 +4,7 @@ import once from './internal/once'; /** * Runs the `tasks` array of functions in parallel, without waiting until the - * previous function has completed. Once any the `tasks` completed or pass an + * previous function has completed. Once any of the `tasks` completed or pass an * error to its callback, the main `callback` is immediately called. It's * equivalent to `Promise.race()`. *