Browse Source

Merge pull request #1344 from rcatini/patch-2

Fix the example to match the expected output
DEV-3377-new-go-exercise-swap-first
MSilva95 2 years ago committed by GitHub
parent
commit
6a3e1be365
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