diff options
author | Hubert Argasinski <argasinski.hubert@gmail.com> | 2016-10-12 12:25:32 -0400 |
---|---|---|
committer | Hubert Argasinski <argasinski.hubert@gmail.com> | 2016-10-12 12:25:32 -0400 |
commit | 80a64f417b1a05fcfd2a3f6b342ab4b79d776e36 (patch) | |
tree | eda4c95de82e248670af08e1cff1ffd61e577869 | |
parent | df05afb0e57f0987f0c8895f042183826c07da79 (diff) | |
download | async-80a64f417b1a05fcfd2a3f6b342ab4b79d776e36.tar.gz |
fix second minor typo in race docs
-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 db7ded3..5547c86 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 of the `tasks` completed or pass an + * previous function has completed. Once any of the `tasks` complete or pass an * error to its callback, the main `callback` is immediately called. It's * equivalent to `Promise.race()`. * |