From a5e8ad8d10c678a009ccc89a0341e96b2a1afd53 Mon Sep 17 00:00:00 2001 From: rcatini <100608277+rcatini@users.noreply.github.com> Date: Wed, 27 Jul 2022 09:59:08 +0200 Subject: [PATCH] Fix the example to match the expected output --- subjects/flags/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/subjects/flags/README.md b/subjects/flags/README.md index 11c64976..83b1ba7b 100644 --- a/subjects/flags/README.md +++ b/subjects/flags/README.md @@ -24,25 +24,25 @@ $ go run . --order 43a21 $ go run . --insert -i - This flag inserts the string into the string passed as argument. + This flag inserts the string into the string passed as argument. --order -o - This flag will behave like a boolean, if it is called it will order the argument. + This flag will behave like a boolean, if it is called it will order the argument. $ $ go run . -h --insert -i - This flag inserts the string into the string passed as argument. + This flag inserts the string into the string passed as argument. --order -o - This flag will behave like a boolean, if it is called it will order the argument. + This flag will behave like a boolean, if it is called it will order the argument. $ $ go run . --help --insert -i - This flag inserts the string into the string passed as argument. + This flag inserts the string into the string passed as argument. --order -o - This flag will behave like a boolean, if it is called it will order the argument. + This flag will behave like a boolean, if it is called it will order the argument. $ ```