diff options
author | Hubert Argasinski <hubert@hubdoc.com> | 2016-10-12 10:43:15 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-12 10:43:15 -0400 |
commit | df05afb0e57f0987f0c8895f042183826c07da79 (patch) | |
tree | ff689d63f61455eceed5a1372f9a0f5053b73632 | |
parent | 7d6ec8bc767fa3ff290f712686bb49b59dbd6da9 (diff) | |
parent | ee1dd28376164989658eba379afd63ec2ba509b1 (diff) | |
download | async-df05afb0e57f0987f0c8895f042183826c07da79.tar.gz |
Merge pull request #1302 from Nicholaiii/patch-1
Minor typo fix
-rw-r--r-- | lib/race.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/race.js b/lib/race.js index 6937627..db7ded3 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()`. * |