diff --git a/subjects/flags/README.md b/subjects/flags/README.md index 9ee0728b..11c64976 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. $ ``` diff --git a/subjects/printstr/README.md b/subjects/printstr/README.md index 2d272318..21dd8d2e 100644 --- a/subjects/printstr/README.md +++ b/subjects/printstr/README.md @@ -30,7 +30,7 @@ And its output : ```console $ go run . | cat -e -Hello World!% +Hello World! $ ```