From 6840f5b147905ea516c6844d710f8466beacc98f Mon Sep 17 00:00:00 2001 From: John Gee Date: Sat, 5 Jun 2021 15:29:36 +1200 Subject: [PATCH] Improve example --- 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 ```