summaryrefslogtreecommitdiff
path: root/lib/reject.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/reject.js')
-rw-r--r--lib/reject.js7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/reject.js b/lib/reject.js
index f4c7a45..f882a93 100644
--- a/lib/reject.js
+++ b/lib/reject.js
@@ -2,12 +2,13 @@ import rejectLimit from './rejectLimit';
import doLimit from './internal/doLimit';
/**
- * The opposite of `filter`. Removes values that pass an `async` truth test.
+ * The opposite of [`filter`]{@link module:Collections.filter}. Removes values that pass an `async` truth test.
*
* @name reject
* @static
- * @memberOf async
- * @see async.filter
+ * @memberOf module:Collections
+ * @method
+ * @see [async.filter]{@link module:Collections.filter}
* @category Collection
* @param {Array|Object} coll - A collection to iterate over.
* @param {Function} iteratee - A truth test to apply to each item in `coll`.