Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohan Herland <johan@herland.net>2010-06-04 03:17:36 +0400
committerJunio C Hamano <gitster@pobox.com>2010-06-06 21:16:35 +0400
commit97b03c353856602a3c30b01baae1efb8dfe4243e (patch)
treed3347e7e41dca282ed6bd0599d7552dde629b4b9 /revision.c
parent57456ef459f137cf81c1875f771ab9485b1fa810 (diff)
revision: Fix typo in --ancestry-path error message
Signed-off-by: Johan Herland <johan@herland.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'revision.c')
-rw-r--r--revision.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/revision.c b/revision.c
index 71fec3c63a..eb6f849cef 100644
--- a/revision.c
+++ b/revision.c
@@ -745,7 +745,7 @@ static int limit_list(struct rev_info *revs)
if (revs->ancestry_path) {
bottom = collect_bottom_commits(list);
if (!bottom)
- die("--ancestry-path given but there is no bottom commits");
+ die("--ancestry-path given but there are no bottom commits");
}
while (list) {