summaryrefslogtreecommitdiff
path: root/lib/detectLimit.js
diff options
context:
space:
mode:
authorAlex Early <alexander.early@gmail.com>2016-06-30 16:02:09 -0700
committerGitHub <noreply@github.com>2016-06-30 16:02:09 -0700
commit13fcbf491d6428415c3e0bb525993fb1f366bee6 (patch)
tree47e5f372d69602b2b18960ec77b711e9ca31bb88 /lib/detectLimit.js
parentb7081631c373bf459f1108824f870c62328ed8d6 (diff)
parent209fb1eb12342cc6efe80a600d8a2566f806e28a (diff)
downloadasync-13fcbf491d6428415c3e0bb525993fb1f366bee6.tar.gz
Merge pull request #1202 from hargasinski/docs-pr
static doc site generation
Diffstat (limited to 'lib/detectLimit.js')
-rw-r--r--lib/detectLimit.js9
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/detectLimit.js b/lib/detectLimit.js
index 2e8ba7a..da54bd6 100644
--- a/lib/detectLimit.js
+++ b/lib/detectLimit.js
@@ -5,15 +5,16 @@ import eachOfLimit from './eachOfLimit';
import findGetResult from './internal/findGetResult';
/**
- * The same as `detect` but runs a maximum of `limit` async operations at a
+ * The same as [`detect`]{@link module:Collections.detect} but runs a maximum of `limit` async operations at a
* time.
*
* @name detectLimit
* @static
- * @memberOf async
- * @see async.detect
+ * @memberOf module:Collections
+ * @method
+ * @see [async.detect]{@link module:Collections.detect}
* @alias findLimit
- * @category Collection
+ * @category Collections
* @param {Array|Object} coll - A collection to iterate over.
* @param {number} limit - The maximum number of async operations at a time.
* @param {Function} iteratee - A truth test to apply to each item in `coll`.