1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
Description: Fix POD error "Expected text after =item, not a number"
Origin: vendor
Bug: https://rt.cpan.org/Ticket/Display.html?id=104801
Forwarded: https://rt.cpan.org/Ticket/Attachment/1501851/800286/fix-Expected-text-after-item-not-a-number.patch
Author: Salvatore Bonaccorso <carnil@debian.org>
Last-Update: 2015-05-30
--- a/lib/Algorithm/Diff.pm
+++ b/lib/Algorithm/Diff.pm
@@ -1099,25 +1099,25 @@ follow 4 values:
=over 4
-=item 3
+=item Z<>3
C<3==(1|2)>. This hunk contains items from @seq1 and the items
from @seq2 that should replace them. Both sequence 1 and 2
contain changed items so both the 1 and 2 bits are set.
-=item 2
+=item Z<>2
This hunk only contains items from @seq2 that should be inserted (not
items from @seq1). Only sequence 2 contains changed items so only the 2
bit is set.
-=item 1
+=item Z<>1
This hunk only contains items from @seq1 that should be deleted (not
items from @seq2). Only sequence 1 contains changed items so only the 1
bit is set.
-=item 0
+=item Z<>0
This means that the items in this hunk are the same in both sequences.
Neither sequence 1 nor 2 contain changed items so neither the 1 nor the
|