@@ -90,7 +90,7 @@ Common options are:
9090    a FIN packet when the other end of the socket sends a FIN packet.
9191    Defaults to ` false ` .  See [ 'end'] [ ]  event for more information.
9292
93- The ` connectListener `  parameter will be added as an  listener for the
93+ The ` connectListener `  parameter will be added as a  listener for the
9494[ 'connect'] [ ]  event.
9595
9696Here is an example of a client of echo server as described previously:
@@ -119,7 +119,7 @@ changed to
119119
120120Creates a TCP connection to ` port `  on ` host ` . If ` host `  is omitted,
121121` 'localhost' `  will be assumed.
122- The ` connectListener `  parameter will be added as an  listener for the
122+ The ` connectListener `  parameter will be added as a  listener for the
123123[ 'connect'] [ ]  event.
124124
125125Is a factory method which returns a new [ 'net.Socket'] ( #net_class_net_socket ) .
@@ -128,7 +128,7 @@ Is a factory method which returns a new ['net.Socket'](#net_class_net_socket).
128128## net.createConnection(path[ , connectListener] )  
129129
130130Creates unix socket connection to ` path ` .
131- The ` connectListener `  parameter will be added as an  listener for the
131+ The ` connectListener `  parameter will be added as a  listener for the
132132[ 'connect'] [ ]  event.
133133
134134A factory method which returns a new [ 'net.Socket'] ( #net_class_net_socket ) .
@@ -150,7 +150,7 @@ parameter is 511 (not 512).
150150
151151This function is asynchronous.  When the server has been bound,
152152[ 'listening'] [ ]  event will be emitted.  The last parameter ` callback ` 
153- will be added as an  listener for the [ 'listening'] [ ]  event.
153+ will be added as a  listener for the [ 'listening'] [ ]  event.
154154
155155One issue some users run into is getting ` EADDRINUSE `  errors. This means that
156156another server is already running on the requested port. One way of handling this
@@ -178,7 +178,7 @@ Start a local socket server listening for connections on the given `path`.
178178
179179This function is asynchronous.  When the server has been bound,
180180[ 'listening'] [ ]  event will be emitted.  The last parameter ` callback ` 
181- will be added as an  listener for the [ 'listening'] [ ]  event.
181+ will be added as a  listener for the [ 'listening'] [ ]  event.
182182
183183On UNIX, the local domain is usually known as the UNIX domain. The path is a
184184filesystem path name. It is subject to the same naming conventions and
@@ -212,7 +212,7 @@ Listening on a file descriptor is not supported on Windows.
212212
213213This function is asynchronous.  When the server has been bound,
214214[ 'listening'] [ ]  event will be emitted.
215- the last parameter ` callback `  will be added as an  listener for the
215+ the last parameter ` callback `  will be added as a  listener for the
216216[ 'listening'] [ ]  event.
217217
218218### server.listen(options[ , callback] )  
@@ -374,7 +374,7 @@ This function is asynchronous. When the ['connect'][] event is emitted the
374374socket is established. If there is a problem connecting, the ` 'connect' `  event
375375will 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
0 commit comments