Unicode::UCD: Make pod header consistent
authorKarl Williamson <public@khwilliamson.com>
Sun, 28 Aug 2011 18:08:04 +0000 (12:08 -0600)
committerKarl Williamson <public@khwilliamson.com>
Fri, 2 Sep 2011 17:57:44 +0000 (11:57 -0600)
All the other function headers in this pod look like what this patch
makes this one look like.  Corresponding links to it are also revised.

lib/Unicode/UCD.pm
pod/perl5140delta.pod
pod/perlre.pod
pod/perlrecharclass.pod
pod/perluniintro.pod

index 1ce0d35..886a806 100644 (file)
@@ -6,7 +6,7 @@ no warnings 'surrogate';    # surrogates can be inputs to this
 use charnames ();
 use Unicode::Normalize qw(getCombinClass NFKD);
 
-our $VERSION = '0.34';
+our $VERSION = '0.35';
 
 use Storable qw(dclone);
 
@@ -1273,7 +1273,7 @@ sub _numeric {
 
 =pod
 
-=head2 num
+=head2 B<num()>
 
 C<num> returns the numeric value of the input Unicode string; or C<undef> if it
 doesn't think the entire string has a completely valid, safe numeric value.
index 51060ac..00ef781 100644 (file)
@@ -2125,7 +2125,7 @@ L<Unicode::UCD> has been upgraded from version 0.27 to 0.32.
 A new function, Unicode::UCD::num(), has been added.  This function
 returns the numeric value of the string passed it or C<undef> if the string
 in its entirety has no "safe" numeric value.  (For more detail, and for the
-definition of "safe", see L<Unicode::UCD/num>.)
+definition of "safe", see L<Unicode::UCD/num()>.)
 
 This upgrade also includes several bug fixes:
 
index 5a01b2c..e3bdd51 100644 (file)
@@ -258,7 +258,7 @@ a number is a different quantity than it really is.  For example,
 C<BENGALI DIGIT FOUR> (U+09EA) looks very much like an
 C<ASCII DIGIT EIGHT> (U+0038).  And, C<\d+>, may match strings of digits
 that are a mixture from different writing systems, creating a security
-issue.  L<Unicode::UCD::num()|Unicode::UCD/num> can be used to sort
+issue.  L<Unicode::UCD/num()> can be used to sort
 this out.  Or the C</a> modifier can be used to force C<\d> to match
 just the ASCII 0 through 9.
 
index 0e583fd..fef220f 100644 (file)
@@ -109,7 +109,7 @@ very much like an ASCII DIGIT EIGHT (U+0038).  An application that
 is expecting only the ASCII digits might be misled, or if the match is
 C<\d+>, the matched string might contain a mixture of digits from
 different writing systems that look like they signify a number different
-than they actually do.  L<Unicode::UCDE<sol>num()|Unicode::UCD/num> can
+than they actually do.  L<Unicode::UCD/num()> can
 be used to safely
 calculate the value, returning C<undef> if the input string contains
 such a mixture.
index a8a927d..778c5de 100644 (file)
@@ -617,7 +617,7 @@ besides the familiar 0 to 9, such as the Arabic and Indic digits.
 Perl does not support string-to-number conversion for digits other
 than ASCII 0 to 9 (and ASCII a to f for hexadecimal).
 To get safe conversions from any Unicode string, use
-L<Unicode::UCDE<sol>num()|Unicode::UCD/num>.
+L<Unicode::UCD/num()>.
 
 =back