Skip to content

Commit b43a316

Browse files
Erouichermehdi
authored andcommitted
Update readme and contest parsing flag description.
1 parent 4c968c6 commit b43a316

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ and help execute tests locally via their favorite programming language.
2020
## Features
2121

2222
- The current supported command list is outlined here, and you can find out more details in the docs page.
23-
- `egor parse`: Starts listening for competitive companion chrome plugin to parse the task
23+
- `egor parse`: Starts listening for competitive companion chrome plugin to parse a task or a contest.
2424
- `egor test`: Runs the tests of the current task and outputs the results.
2525
- `egor config`: Read/Change global configuration parameters.
2626
- `egor testcase`: Add a custom test case to this egor task.
2727
- `egor showcases`: list meta data about the tests in the current task
2828
- `egor printcase`: Print input and or output of a given test case.
2929
- `egor copy`: Copies the current task to the clipboard.
3030
- `egor help`: Display help for command.
31-
- `egor batch (in developement)`: Tests the main solution for this task against another solution (probably written in another language than the main one)
31+
- `egor batch`: Tests the main solution for this task against another solution (probably written in another language than the main one)
3232
by running both of them and feeding them the tests for this task, this is useful if you have a brute force solution and an efficient solution
3333
and you want to validate the optimal solution against the one you are sure that is working.
3434

commands/parse.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ var ParseCommand = cli.Command{
267267
},
268268
&cli.BoolFlag{
269269
Name: "contest",
270-
Usage: "Indicates if this is a contest to parse",
270+
Usage: "Indicates if this is a contest to parse. The number of problems should follow (Defaulted to 1). Example: egor parse --contest 5.",
271271
Aliases: []string{"c"},
272272
Value: false,
273273
},

0 commit comments

Comments
 (0)