]> git.ipfire.org Git - thirdparty/git.git/commitdiff
push: fix english in non-fast-forward message
authorJeff King <peff@peff.net>
Sun, 6 Sep 2009 06:46:25 +0000 (02:46 -0400)
committerJunio C Hamano <gitster@pobox.com>
Sun, 6 Sep 2009 07:39:14 +0000 (00:39 -0700)
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>
builtin-push.c

index 50328f4b08e6fc69bb80a9649df2065efb0a9b2c..86e1f920ff961bd37c8020b01013c65e048a6b64 100644 (file)
@@ -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++;
        }