added flag

This commit is contained in:
Volodymyr Patuta 2020-11-08 21:43:15 +01:00
parent 8869378bfe
commit d4b027447b
2 changed files with 2 additions and 1 deletions

View File

@ -15,6 +15,7 @@ You can find more information in the [subject](https://framagit.org/mhart/Dancin
-h, --help Prints help information
-V, --version Prints version information
-w, --random-world Generate random world
-r, --random Generate random world with random robots
-f, --file <file> Configuration file
```
## Authors

View File

@ -216,7 +216,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
.short("r")
.long("random")
.takes_value(false)
.help("Generate random world"),
.help("Generate random world with random robots"),
)
.get_matches();