Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Utils header section #1008

Merged
merged 1 commit into from
Jan 18, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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]

## 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