docs: fix inconsistency and typos

This commit is contained in:
amin 2024-05-31 02:19:17 +01:00 committed by zanninso
parent 66dbcc24cf
commit d7952e01d8
1 changed files with 7 additions and 5 deletions

View File

@ -15,12 +15,14 @@ Usage: go run . [OPTION] [STRING]
EX: go run . --color=<color> <substring to be colored> "something"
```
### Example
```shell
go run . --color=red "kit" "a king kitten have kit"
```
for the above example the substring kit in the word kitten and the word kit at the end should be colored.
### Usage
```shell
$ go run . --color=red kit "a king kitten have kit"
```
For the example above, the substring kit in the word kitten and the word kit at the end should be colored.
If there are other `ascii-art` optional projects implemented, the program should accept other correctly formatted `[OPTION]` and/or `[BANNER]`.
Additionally, the program must still be able to run with a single `[STRING]` argument.