summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorBeau Gunderson <beau@beaugunderson.com>2014-11-21 15:15:23 -0800
committerBeau Gunderson <beau@beaugunderson.com>2014-11-21 15:15:23 -0800
commit2bbfc0ce963f82038c9a2aec2709dc2db67cb6c9 (patch)
treeae1afd2334a7f733e65f3dffc299021a8ecfb56f /README.md
parent7405049e28af17cd8126cf0231b9ed21e868fea6 (diff)
downloadasync-2bbfc0ce963f82038c9a2aec2709dc2db67cb6c9.tar.gz
Further clarification, link compose
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 9ae16b2..8388c5d 100644
--- a/README.md
+++ b/README.md
@@ -972,8 +972,8 @@ add1mul3(4, function (err, result) {
### seq(fn1, fn2...)
Version of the compose function that is more natural to read.
-Each following function consumes the return value of the former function.
-It is the equivalent of the compose function with reversed arguments.
+Each function consumes the return value of the previous function.
+It is the equivalent of [`compose`](#compose) with the arguments reversed.
Each function is executed with the `this` binding of the composed function.