summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKiko Beats <josefrancisco.verdu@gmail.com>2016-01-18 22:37:49 +0100
committerKiko Beats <josefrancisco.verdu@gmail.com>2016-01-18 22:37:49 +0100
commita5466ba9967a6f5a80568ce098f263b2a7df70ab (patch)
tree27c4b2111cd370e3c4194911203c4a4f5865a5b4
parent5d372b411900d7e6acbe30d4a6de6435d722a7ed (diff)
downloadasync-a5466ba9967a6f5a80568ce098f263b2a7df70ab.tar.gz
Fix Utils header section
-rw-r--r--README.md15
1 files changed, 7 insertions, 8 deletions
diff --git a/README.md b/README.md
index c69d4ae..466503a 100644
--- a/README.md
+++ b/README.md
@@ -1227,7 +1227,6 @@ q.unshift({name: 'bar'}, function (err) {
});
```
-
---------------------------------------
<a name="priorityQueue"></a>
@@ -1361,7 +1360,6 @@ __Arguments__
an error occurs, no further `tasks` will be performed, and the results
object will only contain partial results.
-
__Example__
```js
@@ -1433,7 +1431,6 @@ function(err, results){
For a complicated series of `async` tasks, using the [`auto`](#auto) function makes adding
new tasks much easier (and the code more readable).
-
---------------------------------------
<a name="retry"></a>
@@ -1492,7 +1489,6 @@ async.auto({
});
```
-
---------------------------------------
<a name="iterator"></a>
@@ -1529,7 +1525,7 @@ node> nextfn();
'three'
```
----------------------------------------
+## Utils
<a name="apply"></a>
### apply(function, arguments..)
@@ -1607,6 +1603,8 @@ async.nextTick(function(){
call_order.push('one')
```
+---------------------------------------
+
<a name="times"></a>
### times(n, iterator, [callback])
@@ -1641,10 +1639,9 @@ async.times(5, function(n, next){
__Related__
* timesSeries(n, iterator, [callback])
-* timesLimit(n, limit, iterator, [callback])
-
+* timesLimit(n, limit, iterator, [callback]
-## Utils
+---------------------------------------
<a name="memoize"></a>
### memoize(fn, [hasher])
@@ -1680,6 +1677,8 @@ fn('some name', function () {
});
```
+---------------------------------------
+
<a name="unmemoize"></a>
### unmemoize(fn)