Skip to content

Commit 500f253

Browse files
committed
doc: a listener, not "an" listener
Reviewed-By: Sam Roberts <[email protected]> Reviewed-By: Trevor Norris <[email protected]> PR-URL: #1025
1 parent 54627a9 commit 500f253

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/api/net.markdown

+3-3
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ parameter is 511 (not 512).
131131

132132
This function is asynchronous. When the server has been bound,
133133
['listening'][] event will be emitted. The last parameter `callback`
134-
will be added as an listener for the ['listening'][] event.
134+
will be added as a listener for the ['listening'][] event.
135135

136136
One issue some users run into is getting `EADDRINUSE` errors. This means that
137137
another server is already running on the requested port. One way of handling this
@@ -193,7 +193,7 @@ Listening on a file descriptor is not supported on Windows.
193193

194194
This function is asynchronous. When the server has been bound,
195195
['listening'][] event will be emitted.
196-
The last parameter `callback` will be added as an listener for the
196+
The last parameter `callback` will be added as a listener for the
197197
['listening'][] event.
198198

199199
### server.listen(options[, callback])
@@ -374,7 +374,7 @@ This function is asynchronous. When the ['connect'][] event is emitted the
374374
socket is established. If there is a problem connecting, the `'connect'` event
375375
will not be emitted, the `'error'` event will be emitted with the exception.
376376

377-
The `connectListener` parameter will be added as an listener for the
377+
The `connectListener` parameter will be added as a listener for the
378378
['connect'][] event.
379379

380380
### socket.connect(port[, host][, connectListener])

0 commit comments

Comments
 (0)