Browse Source

Fix the example to match the expected output

DEV-3377-new-go-exercise-swap-first
rcatini 2 years ago committed by GitHub
parent
commit
a5e8ad8d10
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 12
      subjects/flags/README.md

12
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.
$
```

Loading…
Cancel
Save