summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Frysinger <vapier@google.com>2021-11-12 01:39:21 -0500
committerMike Frysinger <vapier@google.com>2021-11-12 17:30:32 +0000
commit3001d6a42645731e5030d238cc739745b9c45817 (patch)
treed70e6cbe5c5639d00f801dcdea32efaa7b91f5bb
parent00c5ea3787a6423db01e961d9aac8fe240e2de08 (diff)
downloadgit-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>
-rw-r--r--man/repo.14
-rw-r--r--subcmds/help.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/man/repo.1 b/man/repo.1
index 4aa76380..40062cfa 100644
--- a/man/repo.1
+++ b/man/repo.1
@@ -1,5 +1,5 @@
1.\" DO NOT MODIFY THIS FILE! It was generated by help2man. 1.\" DO NOT MODIFY THIS FILE! It was generated by help2man.
2.TH REPO "1" "July 2021" "repo" "Repo Manual" 2.TH REPO "1" "November 2021" "repo" "Repo Manual"
3.SH NAME 3.SH NAME
4repo \- repository management tool built on top of git 4repo \- repository management tool built on top of git
5.SH SYNOPSIS 5.SH SYNOPSIS
@@ -43,7 +43,7 @@ filename of event log to append timeline to
43.TP 43.TP
44\fB\-\-git\-trace2\-event\-log\fR=\fI\,GIT_TRACE2_EVENT_LOG\/\fR 44\fB\-\-git\-trace2\-event\-log\fR=\fI\,GIT_TRACE2_EVENT_LOG\/\fR
45directory to write git trace2 event log to 45directory to write git trace2 event log to
46.SS "The complete list of recognized repo commands are:" 46.SS "The complete list of recognized repo commands is:"
47.TP 47.TP
48abandon 48abandon
49Permanently abandon a development branch 49Permanently abandon a development branch
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 "