Skip to content

Commit

Permalink
Remove semi-colons and full-stops from list-item endings
Browse files Browse the repository at this point in the history
  • Loading branch information
wooorm committed Jun 20, 2017
1 parent 9f63466 commit 865d0ba
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,22 +50,19 @@ returns a `number`, iterates over the item at `number` next.

###### Parameters

* `values` (`Array`-like thing)
— Values to iterate over
* `callback` ([`Function`][callback])
— Callback given to `iterate`.
* `context` (`*`, optional)
— Context object to use when invoking `callback`.
* `values` (`Array`-like thing) — Values to iterate over
* `callback` ([`Function`][callback]) — Callback given to `iterate`
* `context` (`*`, optional) — Context object to use when invoking `callback`

#### `function callback(value, index, values)`

Callback given to `iterate`.

###### Parameters

* `value` (`*`) — Current iteration;
* `index` (`number`) — Position of `value` in `values`;
* `values` (`Array`-like thing) — Currently iterated over.
* `value` (`*`) — Current iteration
* `index` (`number`) — Position of `value` in `values`
* `values` (`Array`-like thing) — Currently iterated over

###### Context

Expand Down

0 comments on commit 865d0ba

Please sign in to comment.