From 7b23ec47b03fea62409581ee8a1261a2708b0b77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Thu, 20 Oct 2022 05:33:57 +0200 Subject: [PATCH] doc: fix typo in parseArgs default value Refs: https://github.com/nodejs/node/pull/44631 PR-URL: https://github.com/nodejs/node/pull/45083 Reviewed-By: James M Snell Reviewed-By: Colin Ihrig Reviewed-By: Zeyu "Alex" Yang Reviewed-By: Rich Trott Reviewed-By: Daijiro Wachi --- 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 8c456ad77e6f3e..8500c7c1cc0883 100644 --- a/doc/api/util.md +++ b/doc/api/util.md @@ -1401,7 +1401,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`.