Skip to content

Commit ce62bca

Browse files
tvincent2TeXitoi
authored andcommitted
Fix the --nb-cars option in the example (#85)
1 parent c1ec5f9 commit ce62bca

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ FLAGS:
8989
-v, --verbose Verbose mode
9090
9191
OPTIONS:
92-
-c, --car <car> Number of car
92+
-c, --nb-cars <nb_cars> Number of cars
9393
-l, --level <level>... admin_level to consider
9494
-o, --output <output> Output file
9595
-s, --speed <speed> Set speed [default: 42]
@@ -98,8 +98,8 @@ ARGS:
9898
<FILE>... Files to process
9999
$ ./basic -o foo.txt
100100
Opt { debug: false, verbose: 0, speed: 42, output: "foo.txt", car: None, level: [], files: [] }
101-
$ ./basic -o foo.txt -dvvvs 1337 -l alice -l bob --car 4 bar.txt baz.txt
102-
Opt { debug: true, verbose: 3, speed: 1337, output: "foo.txt", car: Some(4), level: ["alice", "bob"], files: ["bar.txt", "baz.txt"] }
101+
$ ./basic -o foo.txt -dvvvs 1337 -l alice -l bob --nb-cars 4 bar.txt baz.txt
102+
Opt { debug: true, verbose: 3, speed: 1337, output: "foo.txt", nb_cars: Some(4), level: ["alice", "bob"], files: ["bar.txt", "baz.txt"] }
103103
```
104104

105105
## Why

0 commit comments

Comments
 (0)