Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix typo #171

Merged
merged 1 commit into from
Jul 29, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions onlinejudge/implementation/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,9 @@ def main(args=None):
subparser.add_argument('file')
subparser.add_argument('-l', '--language')
subparser.add_argument('--open', nargs='?', const=True, help='open the result page after submission')
subparser.add_argument('-w', '--wait', metavar='SECCOND', type=float, default=3, help='sleep before submitting')
subparser.add_argument('-w', '--wait', metavar='SECOND', type=float, default=3, help='sleep before submitting')
subparser.add_argument('-y', '--yes', action='store_true', help='don\'t confirm')
subparser.add_argument('--full-submission', action='store_true', help='for TopCoder Marathon Match. use this to do "Submit", the default behavier is "Test Exampls".')
subparser.add_argument('--full-submission', action='store_true', help='for TopCoder Marathon Match. use this to do "Submit", the default behavier is "Test Examples".')

# test
subparser = subparsers.add_parser('test',
Expand Down Expand Up @@ -191,7 +191,7 @@ def main(args=None):
command for --command:
Specify a command which outputs something after reading each case.
It can be easily made from your solution for the problem.
exampe:
example:
#include <iostream>
using namespace std;
int main() {
Expand Down