Skip to content

Commit

Permalink
Fixed typo in documentation of emitter.many
Browse files Browse the repository at this point in the history
  • Loading branch information
tauren committed Dec 12, 2013
1 parent 2bc1332 commit a13d04a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ Adds a **one time** listener for the event. The listener is invoked only the fir

#### emitter.many(event, timesToListen, listener)

Adds a listener that will execute **n times** for the event before being removed. The listener is invoked only the first time the event is fired, after which it is removed.
Adds a listener that will execute **n times** for the event before being removed. The listener is invoked only the first **n times** the event is fired, after which it is removed.

```javascript
server.many('get', 4, function (value) {
Expand Down

0 comments on commit a13d04a

Please sign in to comment.