diff options
author | Jeff King <peff@peff.net> | 2009-09-06 02:46:25 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-09-06 00:39:14 -0700 |
commit | e1f8f0cfbef594edd12aba13df8ec53d401ce944 (patch) | |
tree | b91ede6916ea114f20897a20439207a34cbb6c51 | |
parent | bc29df602267b1e5783a93d6ff10909c597e5fdc (diff) | |
download | git-e1f8f0cfbef594edd12aba13df8ec53d401ce944.tar.gz |
push: fix english in non-fast-forward message
We must use an article when referring to the section
because it is a non-proper noun, and it must be the definite
article because we are referring to a specific section.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | builtin-push.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-push.c b/builtin-push.c index 50328f4b08..86e1f920ff 100644 --- a/builtin-push.c +++ b/builtin-push.c @@ -160,7 +160,7 @@ static int do_push(const char *repo, int flags) if (nonfastforward) { printf("To prevent you from losing history, non-fast-forward updates were rejected.\n" "Merge the remote changes before pushing again.\n" - "See 'non-fast forward' section of 'git push --help' for details.\n"); + "See the 'non-fast forward' section of 'git push --help' for details.\n"); } errs++; } |