From 500f2538cc00d389a22b6ddcdd51d2af2c4a7478 Mon Sep 17 00:00:00 2001 From: Sam Roberts Date: Mon, 27 Jul 2015 21:00:32 -0700 Subject: [PATCH] doc: a listener, not "an" listener Reviewed-By: Sam Roberts Reviewed-By: Trevor Norris PR-URL: https://github.com/nodejs/io.js/pull/1025 --- doc/api/net.markdown | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/api/net.markdown b/doc/api/net.markdown index 21e7e5a0a31457..adc1d970535100 100644 --- a/doc/api/net.markdown +++ b/doc/api/net.markdown @@ -131,7 +131,7 @@ parameter is 511 (not 512). This function is asynchronous. When the server has been bound, ['listening'][] event will be emitted. The last parameter `callback` -will be added as an listener for the ['listening'][] event. +will be added as a listener for the ['listening'][] event. One issue some users run into is getting `EADDRINUSE` errors. This means that 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. This function is asynchronous. When the server has been bound, ['listening'][] event will be emitted. -The last parameter `callback` will be added as an listener for the +The last parameter `callback` will be added as a listener for the ['listening'][] event. ### server.listen(options[, callback]) @@ -374,7 +374,7 @@ This function is asynchronous. When the ['connect'][] event is emitted the socket is established. If there is a problem connecting, the `'connect'` event will not be emitted, the `'error'` event will be emitted with the exception. -The `connectListener` parameter will be added as an listener for the +The `connectListener` parameter will be added as a listener for the ['connect'][] event. ### socket.connect(port[, host][, connectListener])