summaryrefslogtreecommitdiff
path: root/lib/seq.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/seq.js')
-rw-r--r--lib/seq.js7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/seq.js b/lib/seq.js
index 4b3e49c..01355b1 100644
--- a/lib/seq.js
+++ b/lib/seq.js
@@ -5,14 +5,15 @@ import reduce from './reduce';
/**
* Version of the compose function that is more natural to read. Each function
* consumes the return value of the previous function. It is the equivalent of
- * {@link async.compose} with the arguments reversed.
+ * [compose]{@link module:ControlFlow.compose} with the arguments reversed.
*
* Each function is executed with the `this` binding of the composed function.
*
* @name seq
* @static
- * @memberOf async
- * @see async.compose
+ * @memberOf module:ControlFlow
+ * @method
+ * @see [async.compose]{@link module:ControlFlow.compose}
* @category Control Flow
* @param {...Function} functions - the asynchronous functions to compose
* @returns {Function} a function that composes the `functions` in order