Skip to content

Commit

Permalink
doc: fix type of connectionAttempt parameter
Browse files Browse the repository at this point in the history
PR-URL: #51490
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Paolo Insogna <paolo@cowtech.it>
  • Loading branch information
RafaelGSS authored and richardlau committed Mar 25, 2024
1 parent ca73f55 commit 96c480b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/api/net.md
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,7 @@ See [`net.createConnection()`][].
added: REPLACEME
-->

* `ip` {number} The IP which the socket is attempting to connect to.
* `ip` {string} The IP which the socket is attempting to connect to.
* `port` {number} The port which the socket is attempting to connect to.
* `family` {number} The family of the IP. It can be `6` for IPv6 or `4` for IPv4.

Expand All @@ -703,7 +703,7 @@ if the family autoselection algorithm is enabled in [`socket.connect(options)`][
added: REPLACEME
-->

* `ip` {number} The IP which the socket attempted to connect to.
* `ip` {string} The IP which the socket attempted to connect to.
* `port` {number} The port which the socket attempted to connect to.
* `family` {number} The family of the IP. It can be `6` for IPv6 or `4` for IPv4.
\* `error` {Error} The error associated with the failure.
Expand All @@ -717,7 +717,7 @@ if the family autoselection algorithm is enabled in [`socket.connect(options)`][
added: REPLACEME
-->

* `ip` {number} The IP which the socket attempted to connect to.
* `ip` {string} The IP which the socket attempted to connect to.
* `port` {number} The port which the socket attempted to connect to.
* `family` {number} The family of the IP. It can be `6` for IPv6 or `4` for IPv4.

Expand Down

0 comments on commit 96c480b

Please sign in to comment.