summaryrefslogtreecommitdiff
path: root/lib/reduceRight.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/reduceRight.js')
-rw-r--r--lib/reduceRight.js7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/reduceRight.js b/lib/reduceRight.js
index fda0505..69fd158 100644
--- a/lib/reduceRight.js
+++ b/lib/reduceRight.js
@@ -3,12 +3,13 @@ import reduce from './reduce';
var slice = Array.prototype.slice;
/**
- * Same as `reduce`, only operates on `coll` in reverse order.
+ * Same as [`reduce`]{@link module:Collections.reduce}, only operates on `coll` in reverse order.
*
* @name reduceRight
* @static
- * @memberOf async
- * @see async.reduce
+ * @memberOf module:Collections
+ * @method
+ * @see [async.reduce]{@link module:Collections.reduce}
* @alias foldr
* @category Collection
* @param {Array|Object} coll - A collection to iterate over.