From 0e204e8babbe5290c8e3670fc8d9b8f6da6b8c29 Mon Sep 17 00:00:00 2001 From: John Gee Date: Sun, 6 Jun 2021 16:32:01 +1200 Subject: [PATCH] Improve example (#1544) --- docs/options-taking-varying-arguments.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/options-taking-varying-arguments.md b/docs/options-taking-varying-arguments.md index 58a52956e..5f661bb33 100644 --- a/docs/options-taking-varying-arguments.md +++ b/docs/options-taking-varying-arguments.md @@ -66,8 +66,8 @@ ingredient: scrambled The explicit way to resolve this is use `--` to indicate the end of the options and option-arguments: ```sh -$ node cook.js -i -- egg -technique: egg +$ node cook.js -i -- scrambled +technique: scrambled ingredient: cheese ```