summaryrefslogtreecommitdiff
path: root/git-bisect.sh
diff options
context:
space:
mode:
authorAlex Henrie <alexhenrie24@gmail.com>2014-08-30 19:56:01 (GMT)
committerJunio C Hamano <gitster@pobox.com>2014-09-02 19:00:30 (GMT)
commitad5fe3771b50f3862130d150b5cc8bb316ef6f1c (patch)
tree720d0806aa46914127296596ea5818f283dc502f /git-bisect.sh
parent96db324a73fdada6fbe7b63221986f8f18cc63b0 (diff)
downloadgit-ad5fe3771b50f3862130d150b5cc8bb316ef6f1c.zip
git-ad5fe3771b50f3862130d150b5cc8bb316ef6f1c.tar.gz
git-ad5fe3771b50f3862130d150b5cc8bb316ef6f1c.tar.bz2
grammofix in user-facing messages
Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Acked-by: Johan Herland <johan@herland.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-bisect.sh')
-rwxr-xr-xgit-bisect.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/git-bisect.sh b/git-bisect.sh
index 1e0d602..6cda2b5 100755
--- a/git-bisect.sh
+++ b/git-bisect.sh
@@ -286,11 +286,11 @@ bisect_next_check() {
if test -s "$GIT_DIR/BISECT_START"
then
- gettextln "You need to give me at least one good and one bad revisions.
+ gettextln "You need to give me at least one good and one bad revision.
(You can use \"git bisect bad\" and \"git bisect good\" for that.)" >&2
else
gettextln "You need to start by \"git bisect start\".
-You then need to give me at least one good and one bad revisions.
+You then need to give me at least one good and one bad revision.
(You can use \"git bisect bad\" and \"git bisect good\" for that.)" >&2
fi
exit 1 ;;