diff options
author | Karl Williamson <public@khwilliamson.com> | 2011-07-28 19:01:13 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2011-07-28 19:25:41 -0600 |
commit | 8bb4c8e21e2d94b8ff815d89655f156cbb99969b (patch) | |
tree | 2d88d9b01ad53063297bf093392cfc1add306c79 /lib | |
parent | 46b134f400b2fdd29192490603f71e1614da4576 (diff) | |
download | perl-8bb4c8e21e2d94b8ff815d89655f156cbb99969b.tar.gz |
Unicode::UCD: fix missing comma in pod
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Unicode/UCD.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Unicode/UCD.pm b/lib/Unicode/UCD.pm index 6b42ff563c..1ce0d35949 100644 --- a/lib/Unicode/UCD.pm +++ b/lib/Unicode/UCD.pm @@ -6,7 +6,7 @@ no warnings 'surrogate'; # surrogates can be inputs to this use charnames (); use Unicode::Normalize qw(getCombinClass NFKD); -our $VERSION = '0.33'; +our $VERSION = '0.34'; use Storable qw(dclone); @@ -1296,7 +1296,7 @@ example returns -0.5. =pod If the string is more than one character, C<undef> is returned unless -all its characters are decimal digits (that is they would match C<\d+>), +all its characters are decimal digits (that is, they would match C<\d+>), from the same script. For example if you have an ASCII '0' and a Bengali '3', mixed together, they aren't considered a valid number, and C<undef> is returned. A further restriction is that the digits all have to be of |