diff options
author | David Steinbrunner <dsteinbrunner@pobox.com> | 2013-05-21 06:47:05 -0400 |
---|---|---|
committer | James E Keenan <jkeenan@cpan.org> | 2013-05-22 19:06:14 -0400 |
commit | b6a6e9564d193cb709231fad4f4816f447263147 (patch) | |
tree | 35b879e91992c64547495ea14d60ba30e6a65b96 /regen/mk_invlists.pl | |
parent | 2effe01f18007a1b28e11f29b319f2b5cd0ae4df (diff) | |
download | perl-b6a6e9564d193cb709231fad4f4816f447263147.tar.gz |
typo fixes for regen scripts
Diffstat (limited to 'regen/mk_invlists.pl')
-rw-r--r-- | regen/mk_invlists.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regen/mk_invlists.pl b/regen/mk_invlists.pl index 843d6e77c3..67b6e417fc 100644 --- a/regen/mk_invlists.pl +++ b/regen/mk_invlists.pl @@ -118,7 +118,7 @@ for my $i (0 .. @$folds_ref - 1) { next unless ref $folds_ref->[$i]; # Skip single-char folds push @has_multi_char_fold, $cp_ref->[$i]; - # Add to the the non-finals list each code point that is in a non-final + # Add to the non-finals list each code point that is in a non-final # position for my $j (0 .. @{$folds_ref->[$i]} - 2) { push @is_non_final_fold, $folds_ref->[$i][$j] @@ -204,7 +204,7 @@ for my $prop (qw( # that crosses the 255/256 boundary if it is one that matches the # property. For example, in the Word property, there is a range of code # points that start at U+00F8 and goes through U+02C1. Instead of - # artifically cutting that off at 256 because 256 is the first code point + # artificially cutting that off at 256 because 256 is the first code point # above Latin1, we let the range go to its natural ending. That gives us # extra information with no added space taken. But if the range that # crosses the boundary is one that doesn't match the property, we don't |