Skip to content

Commit a6f9a34

Browse files
authored
doc: replace U+00A0 with U+0020
Replace NO-BREAK SPACE (U+00A0) with SPACE (U+0020) in `doc/api/net.md`. PR-URL: #52590 Reviewed-By: Paolo Insogna <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Marco Ippolito <[email protected]> Reviewed-By: Ulises Gascón <[email protected]>
1 parent ba9e1e0 commit a6f9a34

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

doc/api/net.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -726,7 +726,7 @@ added:
726726
* `ip` {string} The IP which the socket attempted to connect to.
727727
* `port` {number} The port which the socket attempted to connect to.
728728
* `family` {number} The family of the IP. It can be `6` for IPv6 or `4` for IPv4.
729-
\* `error` {Error} The error associated with the failure.
729+
* `error` {Error} The error associated with the failure.
730730

731731
Emitted when a connection attempt failed. This may be emitted multiple times
732732
if the family autoselection algorithm is enabled in [`socket.connect(options)`][].
@@ -1729,7 +1729,7 @@ nc -U /tmp/echo.sock
17291729
added: v19.4.0
17301730
-->
17311731

1732-
Gets the current default value of the `autoSelectFamily` option of [`socket.connect(options)`][].
1732+
Gets the current default value of the `autoSelectFamily` option of [`socket.connect(options)`][].
17331733
The initial default value is `true`, unless the command line option
17341734
`--no-network-family-autoselection` is provided.
17351735

@@ -1741,9 +1741,9 @@ The initial default value is `true`, unless the command line option
17411741
added: v19.4.0
17421742
-->
17431743

1744-
Sets the default value of the `autoSelectFamily` option of [`socket.connect(options)`][].
1744+
Sets the default value of the `autoSelectFamily` option of [`socket.connect(options)`][].
17451745

1746-
* `value` {boolean} The new default value. The initial default value is `false`.
1746+
* `value` {boolean} The new default value. The initial default value is `false`.
17471747

17481748
## `net.getDefaultAutoSelectFamilyAttemptTimeout()`
17491749

@@ -1753,7 +1753,7 @@ added:
17531753
- v18.18.0
17541754
-->
17551755

1756-
Gets the current default value of the `autoSelectFamilyAttemptTimeout` option of [`socket.connect(options)`][].
1756+
Gets the current default value of the `autoSelectFamilyAttemptTimeout` option of [`socket.connect(options)`][].
17571757
The initial default value is `250` or the value specified via the command line
17581758
option `--network-family-autoselection-attempt-timeout`.
17591759

@@ -1767,9 +1767,9 @@ added:
17671767
- v18.18.0
17681768
-->
17691769

1770-
Sets the default value of the `autoSelectFamilyAttemptTimeout` option of [`socket.connect(options)`][].
1770+
Sets the default value of the `autoSelectFamilyAttemptTimeout` option of [`socket.connect(options)`][].
17711771

1772-
* `value` {number} The new default value, which must be a positive number. If the number is less than `10`,
1772+
* `value` {number} The new default value, which must be a positive number. If the number is less than `10`,
17731773
the value `10` is used instead. The initial default value is `250` or the value specified via the command line
17741774
option `--network-family-autoselection-attempt-timeout`.
17751775

0 commit comments

Comments
 (0)