From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-Status: No, score=-4.2 required=3.0 tests=AWL,BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,NICE_REPLY_A, SPF_HELO_PASS,SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by dcvr.yhbt.net (Postfix) with ESMTP id 9C8FE1F5AE for ; Thu, 30 Jul 2020 10:56:52 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726799AbgG3K4r (ORCPT ); Thu, 30 Jul 2020 06:56:47 -0400 Received: from smtp.hosts.co.uk ([85.233.160.19]:11166 "EHLO smtp.hosts.co.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725892AbgG3K4r (ORCPT ); Thu, 30 Jul 2020 06:56:47 -0400 Received: from host-92-20-155-42.as13285.net ([92.20.155.42] helo=[192.168.1.37]) by smtp.hosts.co.uk with esmtpa (Exim) (envelope-from ) id 1k16Ev-0007cU-Ar; Thu, 30 Jul 2020 11:56:45 +0100 Subject: Re: [PATCH] git-help.txt: fix mentions of option --guides To: Andrei Rybak , git@vger.kernel.org References: <20200729133948.538-1-rybak.a.v@gmail.com> From: Philip Oakley Message-ID: Date: Thu, 30 Jul 2020 11:56:45 +0100 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:68.0) Gecko/20100101 Thunderbird/68.10.0 MIME-Version: 1.0 In-Reply-To: <20200729133948.538-1-rybak.a.v@gmail.com> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Content-Language: en-GB Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org On 29/07/2020 14:39, Andrei Rybak wrote: > Fix typos introduced in commit a133737b80 ("doc: include --guide option > description for "git help"", 2013-04-02). > > Signed-off-by: Andrei Rybak > --- > Documentation/git-help.txt | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/Documentation/git-help.txt b/Documentation/git-help.txt > index f71db0daa2..69c0c5c34e 100644 > --- a/Documentation/git-help.txt > +++ b/Documentation/git-help.txt > @@ -8,7 +8,7 @@ git-help - Display help information about Git > SYNOPSIS > -------- > [verse] > -'git help' [-a|--all [--[no-]verbose]] [-g|--guide] > +'git help' [-a|--all [--[no-]verbose]] [-g|--guides] > [-i|--info|-m|--man|-w|--web] [COMMAND|GUIDE] > > DESCRIPTION > @@ -21,7 +21,7 @@ on the standard output. > If the option `--all` or `-a` is given, all available commands are > printed on the standard output. > > -If the option `--guide` or `-g` is given, a list of the useful > +If the option `--guides` or `-g` is given, a list of the useful > Git guides is also printed on the standard output. > > If a command, or a guide, is given, a manual page for that command or Looks like the error was all mine, all the way back to my a133737b80 (doc: include --guide option description for "git help", 2013-04-02) The majority of that change referred to individual 'guide'(singular), however the option to list them is in the plural. I didn't find any other errorss (other than the referenced commit's subject;-) , but a note as in this commit message about the singular/plural confusion may be worth having if there is a re-roll. Acked-by: Philip Oakley