diff options
author | Mike Ralphson <mike@abacus.co.uk> | 2009-04-17 19:13:29 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-04-20 15:55:56 -0700 |
commit | 7c0282bfb9038516b0eeb3b7cb3c1d6ee3cb20de (patch) | |
tree | cd655c1b09c493c20b02be3a7c64f57e2cb007d3 | |
parent | clone: add test for push on an empty clone. (diff) | |
download | tgif-7c0282bfb9038516b0eeb3b7cb3c1d6ee3cb20de.tar.xz |
builtin-remote: fix typo in option description
Signed-off-by: Mike Ralphson <mike@abacus.co.uk>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | builtin-remote.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-remote.c b/builtin-remote.c index ca7c639ad3..2ed752cbf1 100644 --- a/builtin-remote.c +++ b/builtin-remote.c @@ -1216,7 +1216,7 @@ static int update(int argc, const char **argv) struct option options[] = { OPT_GROUP("update specific options"), OPT_BOOLEAN('p', "prune", &prune, - "prune remotes after fecthing"), + "prune remotes after fetching"), OPT_END() }; |