aboutsummaryrefslogtreecommitdiff
path: root/builtin/update-ref.c
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2012-08-20 19:32:55 +0700
committerJunio C Hamano <gitster@pobox.com>2012-08-22 12:02:28 -0700
commitf63cf8c9fbcd86e8ca3bb78917dc280747bb34a8 (patch)
treee6640fdfc517e5359ae03ba92d2ceb6e262405ec /builtin/update-ref.c
parentb0ff96547ec66979487707ad71f89c23f5e0669d (diff)
downloadgit-f63cf8c9fbcd86e8ca3bb78917dc280747bb34a8.tar.gz
git-f63cf8c9fbcd86e8ca3bb78917dc280747bb34a8.tar.xz
Use imperative form in help usage to describe an action
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/update-ref.c')
-rw-r--r--builtin/update-ref.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/update-ref.c b/builtin/update-ref.c
index b30394ff6..51d268485 100644
--- a/builtin/update-ref.c
+++ b/builtin/update-ref.c
@@ -16,7 +16,7 @@ int cmd_update_ref(int argc, const char **argv, const char *prefix)
int delete = 0, no_deref = 0, flags = 0;
struct option options[] = {
OPT_STRING( 'm', NULL, &msg, N_("reason"), N_("reason of the update")),
- OPT_BOOLEAN('d', NULL, &delete, N_("deletes the reference")),
+ OPT_BOOLEAN('d', NULL, &delete, N_("delete the reference")),
OPT_BOOLEAN( 0 , "no-deref", &no_deref,
N_("update <refname> not the one it points to")),
OPT_END(),