diff options
author | Johan Herland <johan@herland.net> | 2010-06-04 01:17:36 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-06-06 10:16:35 -0700 |
commit | 97b03c353856602a3c30b01baae1efb8dfe4243e (patch) | |
tree | d3347e7e41dca282ed6bd0599d7552dde629b4b9 | |
parent | 57456ef459f137cf81c1875f771ab9485b1fa810 (diff) | |
download | git-97b03c353856602a3c30b01baae1efb8dfe4243e.tar.gz |
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>
-rw-r--r-- | revision.c | 2 |
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) { |