From 05c609a9fc019e57e419f4c20218a4c7fa24dc14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Wed, 19 Oct 2022 20:46:42 +0000 Subject: [PATCH] doc: fix typo in parseArgs default value Refs: https://github.com/nodejs/node/pull/44631 --- doc/api/util.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/util.md b/doc/api/util.md index e3e86899089310..791c905de8fd1a 100644 --- a/doc/api/util.md +++ b/doc/api/util.md @@ -1407,7 +1407,7 @@ changes: * `short` {string} A single character alias for the option. * `default` {string | boolean | string\[] | boolean\[]} The default option value when it is not set by args. It must be of the same type as the - the `type` property. When `multiple` is `true`, it must be an array. + `type` property. When `multiple` is `true`, it must be an array. * `strict` {boolean} Should an error be thrown when unknown arguments are encountered, or when arguments are passed that do not match the `type` configured in `options`.