File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ sub format_one {
10
10
$state = 0;
11
11
open I, ' <' , " $name .txt" or die " No such file $name .txt" ;
12
12
while (<I>) {
13
- if (/ ^(git|scalar)[a-z0-9-]*\( ([0-9])\) $ / ) {
13
+ if (/ ^(?: git|scalar)[a-z0-9-]*\( ([0-9])\) $ / ) {
14
14
$mansection = $1 ;
15
15
next ;
16
16
}
Original file line number Diff line number Diff line change @@ -723,7 +723,7 @@ static struct stored_bitmap *lazy_bitmap_for_commit(struct bitmap_index *bitmap_
723
723
ALLOC_GROW (xor_items , xor_items_nr + 1 , xor_items_alloc );
724
724
725
725
if (xor_items_nr + 1 >= bitmap_git -> entry_count ) {
726
- error (_ ("corrupt bitmap lookup table: xor chain exceed entry count" ));
726
+ error (_ ("corrupt bitmap lookup table: xor chain exceeds entry count" ));
727
727
goto corrupt ;
728
728
}
729
729
You can’t perform that action at this time.
0 commit comments