Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2022-09-23 21:07:49 +0300
committerJunio C Hamano <gitster@pobox.com>2022-09-23 21:07:49 +0300
commit4fd6c5e44459e6444c2cd93383660134c95aabd1 (patch)
tree1c2e3de53b5396df6ffea905326cda480672e695 /pack-bitmap.c
parent0d14f80f9450a4ae37b0122d03cfc921a4ee9083 (diff)
parent711340c797ce501c732eb2b6accee0608c62d4e9 (diff)
Merge branch 'ac/bitmap-lookup-table'
Grammofix. * ac/bitmap-lookup-table: pack-bitmap: improve grammar of "xor chain" error message
Diffstat (limited to 'pack-bitmap.c')
-rw-r--r--pack-bitmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pack-bitmap.c b/pack-bitmap.c
index 9a208abc1f..9d5205055a 100644
--- a/pack-bitmap.c
+++ b/pack-bitmap.c
@@ -723,7 +723,7 @@ static struct stored_bitmap *lazy_bitmap_for_commit(struct bitmap_index *bitmap_
ALLOC_GROW(xor_items, xor_items_nr + 1, xor_items_alloc);
if (xor_items_nr + 1 >= bitmap_git->entry_count) {
- error(_("corrupt bitmap lookup table: xor chain exceed entry count"));
+ error(_("corrupt bitmap lookup table: xor chain exceeds entry count"));
goto corrupt;
}