From f474ff238cd62c8e766b65f7092e0544abb45246 Mon Sep 17 00:00:00 2001 From: ArthurKa Date: Fri, 23 Apr 2021 20:42:33 +0300 Subject: [PATCH] docs: fix typos in README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 758c39bc..d6bd3d98 100644 --- a/README.md +++ b/README.md @@ -336,14 +336,14 @@ Should arrays consume more than one positional argument following their flag. ```console $ node example --arr 1 2 -{ _[], arr: [1, 2] } +{ _: [], arr: [1, 2] } ``` _if disabled:_ ```console $ node example --arr 1 2 -{ _[2], arr: [1] } +{ _: [2], arr: [1] } ``` **Note: in `v18.0.0` we are considering defaulting greedy arrays to `false`.**