Skip to content

Commit

Permalink
chore: better help info for x.py check -h (#838)
Browse files Browse the repository at this point in the history
  • Loading branch information
tanruixiang authored Sep 8, 2022
1 parent ff0ef1e commit a8d8ccb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,8 +257,8 @@ def test_go(dir: str, rest: List[str]) -> None:

parser_check = subparsers.add_parser(
'check',
description="Check code with cpplint or cppcheck",
help="Check code with cpplint or cppcheck")
description="Check or lint source code",
help="Check or lint source code")
parser_check.set_defaults(func=parser_check.print_help)
parser_check_subparsers = parser_check.add_subparsers()
parser_check_cpplint = parser_check_subparsers.add_parser(
Expand Down

0 comments on commit a8d8ccb

Please sign in to comment.