summaryrefslogtreecommitdiff
path: root/lib/seq.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/seq.js')
-rw-r--r--lib/seq.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/seq.js b/lib/seq.js
index 35cde9f..ec1f10c 100644
--- a/lib/seq.js
+++ b/lib/seq.js
@@ -7,14 +7,14 @@ 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
- * [`compose`](#compose) with the arguments reversed.
+ * {@link async.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`
+ * @see async.compose
* @category Control Flow
* @param {...Function} functions - the asynchronous functions to compose
* @example