From: Ævar Arnfjörð Bjarmason Date: Thu, 23 Mar 2017 13:05:21 +0000 (+0000) Subject: for-each-ref: partly change to in help X-Git-Tag: v2.13.0-rc0~33^2~8 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7ac04f1398c4e854cb585bd289ee4fe921984bbd;p=git for-each-ref: partly change to in help Change mentions of to in the help output of for-each-ref as appropriate. Both --[no-]merged and --contains only take commits, but --points-at can take any object, such as a tag pointing to a tree or blob. Signed-off-by: Ævar Arnfjörð Bjarmason Signed-off-by: Junio C Hamano --- diff --git a/builtin/for-each-ref.c b/builtin/for-each-ref.c index df41fa0350..1a5ed20f59 100644 --- a/builtin/for-each-ref.c +++ b/builtin/for-each-ref.c @@ -8,8 +8,8 @@ static char const * const for_each_ref_usage[] = { N_("git for-each-ref [] []"), N_("git for-each-ref [--points-at ]"), - N_("git for-each-ref [(--merged | --no-merged) []]"), - N_("git for-each-ref [--contains []]"), + N_("git for-each-ref [(--merged | --no-merged) []]"), + N_("git for-each-ref [--contains []]"), NULL };