diff options
author | Mike Frysinger <vapier@google.com> | 2021-11-12 01:39:21 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@google.com> | 2021-11-12 17:30:32 +0000 |
commit | 3001d6a42645731e5030d238cc739745b9c45817 (patch) | |
tree | d70e6cbe5c5639d00f801dcdea32efaa7b91f5bb /subcmds/help.py | |
parent | 00c5ea3787a6423db01e961d9aac8fe240e2de08 (diff) | |
download | git-repo-3001d6a42645731e5030d238cc739745b9c45817.tar.gz |
help: fix grammar in help text
Bug: https://crbug.com/gerrit/14838
Change-Id: Ic5000921ba9a1baa086153630ebbb429e3d17642
Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/323515
Reviewed-by: Jack Neus <jackneus@google.com>
Tested-by: Mike Frysinger <vapier@google.com>
Diffstat (limited to 'subcmds/help.py')
-rw-r--r-- | subcmds/help.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/subcmds/help.py b/subcmds/help.py index 1a60ef45..1ad391db 100644 --- a/subcmds/help.py +++ b/subcmds/help.py | |||
@@ -53,7 +53,7 @@ Displays detailed usage information about a command. | |||
53 | self.PrintAllCommandsBody() | 53 | self.PrintAllCommandsBody() |
54 | 54 | ||
55 | def PrintAllCommandsBody(self): | 55 | def PrintAllCommandsBody(self): |
56 | print('The complete list of recognized repo commands are:') | 56 | print('The complete list of recognized repo commands is:') |
57 | commandNames = list(sorted(all_commands)) | 57 | commandNames = list(sorted(all_commands)) |
58 | self._PrintCommands(commandNames) | 58 | self._PrintCommands(commandNames) |
59 | print("See 'repo help <command>' for more information on a " | 59 | print("See 'repo help <command>' for more information on a " |