Skip to content

Commit

Permalink
Merge pull request #1008 from Kikobeats/patch-1
Browse files Browse the repository at this point in the history
Fix Utils header section
  • Loading branch information
megawac committed Jan 18, 2016
2 parents 5d372b4 + a5466ba commit cedd4f4
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1227,7 +1227,6 @@ q.unshift({name: 'bar'}, function (err) {
});
```
---------------------------------------
<a name="priorityQueue"></a>
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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>
Expand Down Expand Up @@ -1492,7 +1489,6 @@ async.auto({
});
```
---------------------------------------
<a name="iterator"></a>
Expand Down Expand Up @@ -1529,7 +1525,7 @@ node> nextfn();
'three'
```
---------------------------------------
## Utils
<a name="apply"></a>
### apply(function, arguments..)
Expand Down Expand Up @@ -1607,6 +1603,8 @@ async.nextTick(function(){
call_order.push('one')
```
---------------------------------------
<a name="times"></a>
### times(n, iterator, [callback])
Expand Down Expand Up @@ -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]

This comment has been minimized.

Copy link
@silentroach

silentroach Jan 19, 2016

Contributor

no ending brace

## Utils
---------------------------------------
<a name="memoize"></a>
### memoize(fn, [hasher])
Expand Down Expand Up @@ -1680,6 +1677,8 @@ fn('some name', function () {
});
```
---------------------------------------
<a name="unmemoize"></a>
### unmemoize(fn)
Expand Down

0 comments on commit cedd4f4

Please sign in to comment.