From: Derrick Stolee Date: Wed, 25 Apr 2018 14:37:54 +0000 (+0000) Subject: ref-filter: fix outdated comment on in_commit_list X-Git-Tag: v2.19.0-rc0~192^2~11 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/8fb572af5f4e3bef2415ac2dba8d76d37235b489 ref-filter: fix outdated comment on in_commit_list The in_commit_list() method does not check the parents of the candidate for containment in the list. Fix the comment that incorrectly states that it does. Reported-by: Jakub Narebski Signed-off-by: Derrick Stolee Signed-off-by: Junio C Hamano --- diff --git a/ref-filter.c b/ref-filter.c index cffd8bf3ce..aff24d93be 100644 --- a/ref-filter.c +++ b/ref-filter.c @@ -1582,7 +1582,7 @@ static int in_commit_list(const struct commit_list *want, struct commit *c) } /* - * Test whether the candidate or one of its parents is contained in the list. + * Test whether the candidate is contained in the list. * Do not recurse to find out, though, but return -1 if inconclusive. */ static enum contains_result contains_test(struct commit *candidate,