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 | Documentation/rev-list-options.txt: Explain --ancestry-path (diff) | |
| download | git-97b03c353856602a3c30b01baae1efb8dfe4243e.tar.gz git-97b03c353856602a3c30b01baae1efb8dfe4243e.zip | |
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) { |
