You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kvrocks.apache.org by ti...@apache.org on 2022/09/08 17:22:21 UTC

[incubator-kvrocks] branch unstable updated: chore: better help info for x.py check -h (#838)

This is an automated email from the ASF dual-hosted git repository.

tison pushed a commit to branch unstable
in repository https://gitbox.apache.org/repos/asf/incubator-kvrocks.git


The following commit(s) were added to refs/heads/unstable by this push:
     new a8d8ccb  chore: better help info for x.py check -h (#838)
a8d8ccb is described below

commit a8d8ccbe97a755148011e5d2a87fae8596177913
Author: Ruixiang Tan <81...@qq.com>
AuthorDate: Fri Sep 9 01:22:16 2022 +0800

    chore: better help info for x.py check -h (#838)
---
 x.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x.py b/x.py
index d4e620d..3a7f5d5 100755
--- a/x.py
+++ b/x.py
@@ -257,8 +257,8 @@ if __name__ == '__main__':
 
     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(