summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuan José <soyjuanarbol@gmail.com>2021-10-04 17:18:30 -0500
committerGitHub <noreply@github.com>2021-10-04 15:18:30 -0700
commitfc9ba651341af5ab974aade6b1640e345912be83 (patch)
tree0b758415a2f384ac51b930a91bc9490bd515f172
parentb1b69b03b35022c6c9dfb8f4b9c1ace8f1baf5be (diff)
downloadasync-fc9ba651341af5ab974aade6b1640e345912be83.tar.gz
Fix(docs): use plural `callbacks` word in `lib/map.js` (#1765)
-rw-r--r--lib/map.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/map.js b/lib/map.js
index 13646c9..2a8a03b 100644
--- a/lib/map.js
+++ b/lib/map.js
@@ -5,7 +5,7 @@ import awaitify from './internal/awaitify'
/**
* Produces a new collection of values by mapping each value in `coll` through
* the `iteratee` function. The `iteratee` is called with an item from `coll`
- * and a callback for when it has finished processing. Each of these callback
+ * and a callback for when it has finished processing. Each of these callbacks
* takes 2 arguments: an `error`, and the transformed item from `coll`. If
* `iteratee` passes an error to its callback, the main `callback` (for the
* `map` function) is immediately called with the error.