From 2a99124d2b388fb32e34886898efc4b624f4e26e Mon Sep 17 00:00:00 2001 From: rvolgers <14318781+rvolgers@users.noreply.github.com> Date: Tue, 20 Aug 2019 00:15:13 +0200 Subject: [PATCH] fix(docs): fix incorrect parserConfiguration documentation --- docs/advanced.md | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/docs/advanced.md b/docs/advanced.md index f6e7a2b6a..9605cc576 100644 --- a/docs/advanced.md +++ b/docs/advanced.md @@ -435,13 +435,11 @@ using the [`parserConfiguration()`](/docs/api.md#parserConfiguration) method you ```js yargs.parserConfiguration({ - "yargs": { - "short-option-groups": true, - "camel-case-expansion": true, - "dot-notation": true, - "parse-numbers": true, - "boolean-negation": true - } + "short-option-groups": true, + "camel-case-expansion": true, + "dot-notation": true, + "parse-numbers": true, + "boolean-negation": true }) ```