aboutsummaryrefslogtreecommitdiff
path: root/git-stash.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2014-09-19 11:38:35 -0700
committerJunio C Hamano <gitster@pobox.com>2014-09-19 11:38:35 -0700
commit296b4c4bbf63c8addb1654a05950843e9984d0eb (patch)
tree2a93522efd6d616bc60372d945c3b43d1f2fb54f /git-stash.sh
parent4fc72d91066d8fcb6de25596429fd603d3d91d79 (diff)
parentad5fe3771b50f3862130d150b5cc8bb316ef6f1c (diff)
downloadgit-296b4c4bbf63c8addb1654a05950843e9984d0eb.tar.gz
git-296b4c4bbf63c8addb1654a05950843e9984d0eb.tar.xz
Merge branch 'ah/grammofix'
* ah/grammofix: grammofix in user-facing messages
Diffstat (limited to 'git-stash.sh')
-rwxr-xr-xgit-stash.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-stash.sh b/git-stash.sh
index 9c1ba8e4b..0158c7338 100755
--- a/git-stash.sh
+++ b/git-stash.sh
@@ -394,7 +394,7 @@ parse_flags_and_rev()
REV=$(git rev-parse --quiet --symbolic --verify "$1" 2>/dev/null) || {
reference="$1"
- die "$(eval_gettext "\$reference is not valid reference")"
+ die "$(eval_gettext "\$reference is not a valid reference")"
}
i_commit=$(git rev-parse --quiet --verify "$REV^2" 2>/dev/null) &&