From b0d31bb85490fdc9cdd4c8704d2e27d54e67d2b6 Mon Sep 17 00:00:00 2001 From: Deokjin Kim Date: Sat, 11 Mar 2023 00:07:55 +0900 Subject: net: fix setting of value in 'setDefaultAutoSelectFamilyAttemptTimeout' Document describes that the value have to be 10 if passed value to `setDefaultAutoSelectFamilyAttemptTimeout` is less than 10. So need to use 10 for 'if' statement and fix typo in document. Refs: https://github.com/nodejs/node/blob/main/doc/api/net.md#netsetdefaultautoselectfamilyattempttimeoutvalue PR-URL: https://github.com/nodejs/node/pull/47012 Reviewed-By: Paolo Insogna Reviewed-By: Yagiz Nizipli Reviewed-By: Minwoo Jung --- doc/api/net.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc/api/net.md') diff --git a/doc/api/net.md b/doc/api/net.md index b752129dd5..2b67e85a32 100644 --- a/doc/api/net.md +++ b/doc/api/net.md @@ -1661,7 +1661,7 @@ added: REPLACEME Sets the default value of the `autoSelectFamilyAttemptTimeout` option of [`socket.connect(options)`][]. * `value` {number} The new default value, which must be a positive number. If the number is less than `10`, - the value `10` is used insted The initial default value is `250`. + the value `10` is used instead. The initial default value is `250`. ## `net.isIP(input)` -- cgit v1.2.1