summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHubert Argasinski <argasinski.hubert@gmail.com>2016-03-31 00:06:20 -0700
committerGraeme Yeates <yeatesgraeme@gmail.com>2016-04-12 18:46:28 -0400
commita778ee63788d533111ff63b611cc5034e18a907f (patch)
treeb224a4695b0411fc95f79add47da08042774a6e9
parent982674c1ac82865c0dbf31ae2ec611ec1cdcd21a (diff)
downloadasync-a778ee63788d533111ff63b611cc5034e18a907f.tar.gz
jsdoc-style documentation wrapped @see info in backticks
-rw-r--r--lib/concatSeries.js2
-rw-r--r--lib/detectLimit.js2
-rw-r--r--lib/detectSeries.js2
-rw-r--r--lib/eachLimit.js2
-rw-r--r--lib/eachOfLimit.js2
-rw-r--r--lib/eachOfSeries.js2
-rw-r--r--lib/eachSeries.js2
-rw-r--r--lib/everyLimit.js2
-rw-r--r--lib/everySeries.js2
-rw-r--r--lib/filterLimit.js2
-rw-r--r--lib/filterSeries.js2
-rw-r--r--lib/mapLimit.js2
-rw-r--r--lib/mapSeries.js2
-rw-r--r--lib/reduceRight.js2
-rw-r--r--lib/reject.js2
-rw-r--r--lib/rejectLimit.js2
-rw-r--r--lib/rejectSeries.js2
-rw-r--r--lib/someLimit.js2
-rw-r--r--lib/someSeries.js2
19 files changed, 19 insertions, 19 deletions
diff --git a/lib/concatSeries.js b/lib/concatSeries.js
index 73312dc..3fb89d2 100644
--- a/lib/concatSeries.js
+++ b/lib/concatSeries.js
@@ -9,7 +9,7 @@ import doSeries from './internal/doSeries';
* @name concatSeries
* @static
* @memberOf async
- * @see async.concat
+ * @see `async.concat`
* @category Collection
* @param {Array|Object} coll - A collection to iterate over.
* @param {Function} iteratee - A function to apply to each item in `coll`.
diff --git a/lib/detectLimit.js b/lib/detectLimit.js
index 20c8040..ee9080b 100644
--- a/lib/detectLimit.js
+++ b/lib/detectLimit.js
@@ -13,7 +13,7 @@ import findGetResult from './internal/findGetResult';
* @name detectLimit
* @static
* @memberOf async
- * @see async.detect
+ * @see `async.detect`
* @alias findLimit
* @category Collection
* @param {Array|Object} coll - A collection to iterate over.
diff --git a/lib/detectSeries.js b/lib/detectSeries.js
index 659d820..9c88bda 100644
--- a/lib/detectSeries.js
+++ b/lib/detectSeries.js
@@ -12,7 +12,7 @@ import findGetResult from './internal/findGetResult';
* @name detectSeries
* @static
* @memberOf async
- * @see async.detect
+ * @see `async.detect`
* @alias findSeries
* @category Collection
* @param {Array|Object} coll - A collection to iterate over.
diff --git a/lib/eachLimit.js b/lib/eachLimit.js
index 415e6e8..825c47e 100644
--- a/lib/eachLimit.js
+++ b/lib/eachLimit.js
@@ -9,7 +9,7 @@ import withoutIndex from './internal/withoutIndex';
* @name eachLimit
* @static
* @memberOf async
- * @see async.each
+ * @see `async.each`
* @alias forEachLimit
* @category Collection
* @param {Array|Object} coll - A colleciton to iterate over.
diff --git a/lib/eachOfLimit.js b/lib/eachOfLimit.js
index 753dbc0..fe0f088 100644
--- a/lib/eachOfLimit.js
+++ b/lib/eachOfLimit.js
@@ -9,7 +9,7 @@ import _eachOfLimit from './internal/eachOfLimit';
* @name eachOfLimit
* @static
* @memberOf async
- * @see async.eachOf
+ * @see `async.eachOf`
* @alias forEachOfLimit
* @category Collection
* @param {Array|Object} coll - A collection to iterate over.
diff --git a/lib/eachOfSeries.js b/lib/eachOfSeries.js
index 0718805..f4cd1a3 100644
--- a/lib/eachOfSeries.js
+++ b/lib/eachOfSeries.js
@@ -9,7 +9,7 @@ import doLimit from './internal/doLimit';
* @name eachOfSeries
* @static
* @memberOf async
- * @see async.eachOf
+ * @see `async.eachOf`
* @alias forEachOfSeries
* @category Collection
* @param {Array|Object} coll - A collection to iterate over.
diff --git a/lib/eachSeries.js b/lib/eachSeries.js
index 470c34c..7488955 100644
--- a/lib/eachSeries.js
+++ b/lib/eachSeries.js
@@ -9,7 +9,7 @@ import doLimit from './internal/doLimit';
* @name eachSeries
* @static
* @memberOf async
- * @see async.each
+ * @see `async.each`
* @alias forEachSeries
* @category Collection
* @param {Array|Object} coll - A collection to iterate over.
diff --git a/lib/everyLimit.js b/lib/everyLimit.js
index 1c3511c..e9a690d 100644
--- a/lib/everyLimit.js
+++ b/lib/everyLimit.js
@@ -10,7 +10,7 @@ import notId from './internal/notId';
* @name everyLimit
* @static
* @memberOf async
- * @see every
+ * @see `async.every`
* @alias allLimit
* @category Collection
* @param {Array|Object} coll - A collection to iterate over.
diff --git a/lib/everySeries.js b/lib/everySeries.js
index aca6cec..636a088 100644
--- a/lib/everySeries.js
+++ b/lib/everySeries.js
@@ -9,7 +9,7 @@ import doLimit from './internal/doLimit';
* @name everySeries
* @static
* @memberOf async
- * @see async.every
+ * @see `async.every`
* @alias allSeries
* @category Collection
* @param {Array|Object} coll - A collection to iterate over.
diff --git a/lib/filterLimit.js b/lib/filterLimit.js
index 414ea4d..34be228 100644
--- a/lib/filterLimit.js
+++ b/lib/filterLimit.js
@@ -10,7 +10,7 @@ import doParallelLimit from './internal/doParallelLimit';
* @name filterLimit
* @static
* @memberOf async
- * @see async.filter
+ * @see `async.filter`
* @alias selectLimit
* @category Collection
* @param {Array|Object} coll - A collection to iterate over.
diff --git a/lib/filterSeries.js b/lib/filterSeries.js
index 97c3907..44c7542 100644
--- a/lib/filterSeries.js
+++ b/lib/filterSeries.js
@@ -9,7 +9,7 @@ import doLimit from './internal/doLimit';
* @name filterSeries
* @static
* @memberOf async
- * @see async.filter
+ * @see `async.filter`
* @alias selectSeries
* @category Collection
* @param {Array|Object} coll - A collection to iterate over.
diff --git a/lib/mapLimit.js b/lib/mapLimit.js
index 916b206..8512885 100644
--- a/lib/mapLimit.js
+++ b/lib/mapLimit.js
@@ -9,7 +9,7 @@ import map from './internal/map';
* @name mapLimit
* @static
* @memberOf async
- * @see async.map
+ * @see `async.map`
* @category Collection
* @param {Array|Object} coll - A collection to iterate over.
* @param {number} limit - The maximum number of async operations at a time.
diff --git a/lib/mapSeries.js b/lib/mapSeries.js
index efa2818..d5a9af2 100644
--- a/lib/mapSeries.js
+++ b/lib/mapSeries.js
@@ -9,7 +9,7 @@ import doLimit from './internal/doLimit';
* @name mapSeries
* @static
* @memberOf async
- * @see async.map
+ * @see `async.map`
* @category Collection
* @param {Array|Object} coll - A collection to iterate over.
* @param {Function} iteratee - A function to apply to each item in `coll`.
diff --git a/lib/reduceRight.js b/lib/reduceRight.js
index 033b9da..c0135a8 100644
--- a/lib/reduceRight.js
+++ b/lib/reduceRight.js
@@ -10,7 +10,7 @@ var slice = Array.prototype.slice;
* @name reduceRight
* @static
* @memberOf async
- * @see async.reduce
+ * @see `async.reduce`
* @alias foldr
* @category Collection
* @param {Array|Object} coll - A collection to iterate over.
diff --git a/lib/reject.js b/lib/reject.js
index f7f6f10..b96321a 100644
--- a/lib/reject.js
+++ b/lib/reject.js
@@ -9,7 +9,7 @@ import doLimit from './internal/doLimit';
* @name reject
* @static
* @memberOf async
- * @see async.filter
+ * @see `async.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`.
diff --git a/lib/rejectLimit.js b/lib/rejectLimit.js
index 9b3fbd3..67f34cb 100644
--- a/lib/rejectLimit.js
+++ b/lib/rejectLimit.js
@@ -10,7 +10,7 @@ import doParallelLimit from './internal/doParallelLimit';
* @name rejectLimit
* @static
* @memberOf async
- * @see async.reject
+ * @see `async.reject`
* @category Collection
* @param {Array|Object} coll - A collection to iterate over.
* @param {number} limit - The maximum number of async operations at a time.
diff --git a/lib/rejectSeries.js b/lib/rejectSeries.js
index 1732eca..858f39a 100644
--- a/lib/rejectSeries.js
+++ b/lib/rejectSeries.js
@@ -9,7 +9,7 @@ import doLimit from './internal/doLimit';
* @name rejectSeries
* @static
* @memberOf async
- * @see async.reject
+ * @see `async.reject`
* @category Collection
* @param {Array|Object} coll - A collection to iterate over.
* @param {Function} iteratee - A truth test to apply to each item in `coll`.
diff --git a/lib/someLimit.js b/lib/someLimit.js
index 521c116..a70e194 100644
--- a/lib/someLimit.js
+++ b/lib/someLimit.js
@@ -10,7 +10,7 @@ import identity from 'lodash/identity';
* @name someLimit
* @static
* @memberOf async
- * @see async.some
+ * @see `async.some`
* @alias anyLimit
* @category Collection
* @param {Array|Object} coll - A collection to iterate over.
diff --git a/lib/someSeries.js b/lib/someSeries.js
index 41ca733..5637556 100644
--- a/lib/someSeries.js
+++ b/lib/someSeries.js
@@ -9,7 +9,7 @@ import doLimit from './internal/doLimit';
* @name someSeries
* @static
* @memberOf async
- * @see async.some
+ * @see `async.some`
* @alias anySeries
* @category Collection
* @param {Array|Object} coll - A collection to iterate over.