Skip to content

Commit

Permalink
bisect: correction of typo
Browse files Browse the repository at this point in the history
Signed-off-by: Antoine Delaite <antoine.delaite@ensimag.grenoble-inp.fr>
Signed-off-by: Matthieu Moy <Matthieu.Moy@imag.fr>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Antoine Delaite authored and Junio C Hamano committed Jun 23, 2015
1 parent 5b1d901 commit f6216c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bisect.c
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,7 @@ static void handle_bad_merge_base(void)

fprintf(stderr, "Some good revs are not ancestor of the bad rev.\n"
"git bisect cannot work properly in this case.\n"
"Maybe you mistake good and bad revs?\n");
"Maybe you mistook good and bad revs?\n");
exit(1);
}

Expand Down
2 changes: 1 addition & 1 deletion t/t6030-bisect-porcelain.sh
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ test_expect_success 'bisect starting with a detached HEAD' '
test_expect_success 'bisect errors out if bad and good are mistaken' '
git bisect reset &&
test_must_fail git bisect start $HASH2 $HASH4 2> rev_list_error &&
grep "mistake good and bad" rev_list_error &&
grep "mistook good and bad" rev_list_error &&
git bisect reset
'

Expand Down

0 comments on commit f6216c2

Please sign in to comment.