diff options
author | Denton Liu <liu.denton@gmail.com> | 2019-05-08 15:16:41 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-05-09 15:10:38 +0900 |
commit | a54b2ab345c4e50e2adfbdeab7d716f5be77a6b3 (patch) | |
tree | 6d28c0c2262adbcc54fba016c8b7685b3c4fc08a /builtin/tag.c | |
parent | tag: advise on nested tags (diff) | |
download | tgif-a54b2ab345c4e50e2adfbdeab7d716f5be77a6b3.tar.xz |
tag: fix typo in nested tagging hint
In eea9c1e78f (tag: advise on nested tags, 2019-04-04), tag was taught
to hint at the user if a nested tag is made. However, this message had a
typo and it said "The object referred to by your new is...", which was
missing a "tag" after "new". Fix this message by adding the "tag".
Signed-off-by: Denton Liu <liu.denton@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/tag.c')
-rw-r--r-- | builtin/tag.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/tag.c b/builtin/tag.c index 32948fade0..16b59c45cf 100644 --- a/builtin/tag.c +++ b/builtin/tag.c @@ -207,7 +207,7 @@ struct create_tag_options { }; static const char message_advice_nested_tag[] = - N_("You have created a nested tag. The object referred to by your new is\n" + N_("You have created a nested tag. The object referred to by your new tag is\n" "already a tag. If you meant to tag the object that it points to, use:\n" "\n" "\tgit tag -f %s %s^{}"); |