[PATCH 1/4] push: fix english in non-fast-forward message

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Jeff King
Date: Saturday, September 5, 2009 - 11:46 pm

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>
---
 builtin-push.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/builtin-push.c b/builtin-push.c
index 67f6d96..8d72cc2 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++;
 	}
-- 
1.6.4.2.266.g981efc.dirty

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[RFC/PATCH 0/4] make helpful messages optional, Jeff King, (Sat Sep 5, 11:44 pm)
[PATCH 1/4] push: fix english in non-fast-forward message, Jeff King, (Sat Sep 5, 11:46 pm)
[PATCH 2/4] push: re-flow non-fast-forward message, Jeff King, (Sat Sep 5, 11:47 pm)
Re: [RFC/PATCH 0/4] make helpful messages optional, Matthieu Moy, (Sun Sep 6, 4:53 am)
[PATCH 0/2] configurable advice messages, Jeff King, (Wed Sep 9, 4:26 am)