From 3001d6a42645731e5030d238cc739745b9c45817 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Fri, 12 Nov 2021 01:39:21 -0500 Subject: [PATCH] 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 Tested-by: Mike Frysinger --- man/repo.1 | 4 ++-- subcmds/help.py | 2 +- 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 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man. -.TH REPO "1" "July 2021" "repo" "Repo Manual" +.TH REPO "1" "November 2021" "repo" "Repo Manual" .SH NAME repo \- repository management tool built on top of git .SH SYNOPSIS @@ -43,7 +43,7 @@ filename of event log to append timeline to .TP \fB\-\-git\-trace2\-event\-log\fR=\fI\,GIT_TRACE2_EVENT_LOG\/\fR directory to write git trace2 event log to -.SS "The complete list of recognized repo commands are:" +.SS "The complete list of recognized repo commands is:" .TP abandon Permanently 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. self.PrintAllCommandsBody() def PrintAllCommandsBody(self): - print('The complete list of recognized repo commands are:') + print('The complete list of recognized repo commands is:') commandNames = list(sorted(all_commands)) self._PrintCommands(commandNames) print("See 'repo help ' for more information on a "