Message ID | pull.1329.git.git.1663326823401.gitgitgadget@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | bugreport: add missing closing bracket in usage line | expand |
"Fangyi Zhou via GitGitGadget" <gitgitgadget@gmail.com> writes: > From: Fangyi Zhou <me@fangyi.io> > > Signed-off-by: Fangyi Zhou <me@fangyi.io> > --- > bugreport: add missing closing bracket in usage line > > Signed-off-by: Fangyi Zhou me@fangyi.io > > Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-git-1329%2Ffangyi-zhou%2Fbugreport-usage-fix-v1 > Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-git-1329/fangyi-zhou/bugreport-usage-fix-v1 > Pull-Request: https://github.com/git/git/pull/1329 > > builtin/bugreport.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/builtin/bugreport.c b/builtin/bugreport.c > index 530895be55f..a4a5a88840d 100644 > --- a/builtin/bugreport.c > +++ b/builtin/bugreport.c > @@ -60,7 +60,7 @@ static void get_populated_hooks(struct strbuf *hook_info, int nongit) > } > > static const char * const bugreport_usage[] = { > - N_("git bugreport [-o|--output-directory <file>] [-s|--suffix <format>] [--diagnose[=<mode>]"), > + N_("git bugreport [-o|--output-directory <file>] [-s|--suffix <format>] [--diagnose[=<mode>]]"), > NULL > }; OK, this came from aac0e8ff (builtin/bugreport.c: create '--diagnose' option, 2022-08-12), which gets the SYNOPSIS in the documentation right but misses the usage text. An identical fix already exists as 63407051 (doc txt & -h consistency: add missing "]" to bugreport "-h", 2022-09-05). It may help the project more to help move the topic that contains it forward by reviewing them, than independently coming up with an identical fix. The topic with the existing fix appears at https://lore.kernel.org/git/cover-00.34-00000000000-20220902T092734Z-avarab@gmail.com/ Thanks.
On Fri, 16 Sept 2022 at 17:04, Junio C Hamano <gitster@pobox.com> wrote: > > An identical fix already exists as 63407051 (doc txt & -h > consistency: add missing "]" to bugreport "-h", 2022-09-05). > Thanks for pointing this out. I'm sorry that I wasn't aware of the fix. > It may help the project more to help move the topic that contains it > forward by reviewing them, than independently coming up with an > identical fix. The topic with the existing fix appears at > > https://lore.kernel.org/git/cover-00.34-00000000000-20220902T092734Z-avarab@gmail.com/ > > Thanks. I did a quick search on the mailing list webpage and didn't find anything immediately. Apologies for the noise. I only work with l10n every once a few months, and I hope that is not too unhelpful when I submit minor patches of i18n text when I find issues. Best and Have a nice weekend, Fangyi
diff --git a/builtin/bugreport.c b/builtin/bugreport.c index 530895be55f..a4a5a88840d 100644 --- a/builtin/bugreport.c +++ b/builtin/bugreport.c @@ -60,7 +60,7 @@ static void get_populated_hooks(struct strbuf *hook_info, int nongit) } static const char * const bugreport_usage[] = { - N_("git bugreport [-o|--output-directory <file>] [-s|--suffix <format>] [--diagnose[=<mode>]"), + N_("git bugreport [-o|--output-directory <file>] [-s|--suffix <format>] [--diagnose[=<mode>]]"), NULL };