summaryrefslogtreecommitdiff
path: root/lib/filter.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/filter.js')
-rw-r--r--lib/filter.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/filter.js b/lib/filter.js
index 9dce1be..b576df2 100644
--- a/lib/filter.js
+++ b/lib/filter.js
@@ -2,13 +2,16 @@ import filterLimit from './filterLimit';
import doLimit from './internal/doLimit';
/**
+ * ```
+ * import filter from 'async/filter'
+ * ```
* Returns a new array of all the values in `coll` which pass an async truth
* test. This operation is performed in parallel, but the results array will be
* in the same order as the original.
*
* @name filter
* @static
- * @memberOf module:async
+ * @memberOf module:Collections
* @method
* @alias select
* @category Collection