diff options
author | Karl Williamson <public@khwilliamson.com> | 2013-01-24 14:41:02 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2013-01-24 19:04:48 -0700 |
commit | f703fc96a75eab3db924e41a52531905784836de (patch) | |
tree | 3e1d1202c4d1a4efaa959f0af21a57e7babfcacd /lib | |
parent | e58c5aaf5fae1951e56c0433da91fbbfb31b620c (diff) | |
download | perl-f703fc96a75eab3db924e41a52531905784836de.tar.gz |
Fix various minor pod issues
These were all uncovered by the new Pod::Checker, not yet in core.
Fixing these will speed up debugging the new Checker.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/DBM_Filter.pm | 4 | ||||
-rw-r--r-- | lib/Unicode/UCD.pm | 6 | ||||
-rw-r--r-- | lib/filetest.pm | 4 | ||||
-rw-r--r-- | lib/overload.pm | 4 | ||||
-rw-r--r-- | lib/perl5db.pl | 4 |
5 files changed, 11 insertions, 11 deletions
diff --git a/lib/DBM_Filter.pm b/lib/DBM_Filter.pm index a5f4a17fd5..3421848eca 100644 --- a/lib/DBM_Filter.pm +++ b/lib/DBM_Filter.pm @@ -2,7 +2,7 @@ package DBM_Filter ; use strict; use warnings; -our $VERSION = '0.04'; +our $VERSION = '0.05'; package Tie::Hash ; @@ -247,7 +247,7 @@ DBM_Filter -- Filter DBM keys/values $db->Filtered(); package DBM_Filter::my_filter1; - + sub Store { ... } sub Fetch { ... } diff --git a/lib/Unicode/UCD.pm b/lib/Unicode/UCD.pm index 02023a79ae..414acf7701 100644 --- a/lib/Unicode/UCD.pm +++ b/lib/Unicode/UCD.pm @@ -5,7 +5,7 @@ use warnings; no warnings 'surrogate'; # surrogates can be inputs to this use charnames (); -our $VERSION = '0.47'; +our $VERSION = '0.48'; require Exporter; @@ -1006,12 +1006,12 @@ dotless lowercase i: =over -=item B<*> If you use this C<I> mapping +=item Z<>B<*> If you use this C<I> mapping the result is case-insensitive, but dotless and dotted I's are not distinguished -=item B<*> If you exclude this C<I> mapping +=item Z<>B<*> If you exclude this C<I> mapping the result is not fully case-insensitive, but dotless and dotted I's are distinguished diff --git a/lib/filetest.pm b/lib/filetest.pm index b08f1dc910..a4049832e6 100644 --- a/lib/filetest.pm +++ b/lib/filetest.pm @@ -1,6 +1,6 @@ package filetest; -our $VERSION = '1.02'; +our $VERSION = '1.03'; =head1 NAME @@ -71,7 +71,7 @@ of the operators is a filename, not when it is a filehandle. Because access() does not invoke stat() (at least not in a way visible to Perl), B<the stat result cache "_" is not set>. This means that the outcome of the following two tests is different. The first has the stat -bits of C</etc/passwd> in C<_>, and in the second case this still +bits of F</etc/passwd> in C<_>, and in the second case this still contains the bits of C</etc>. { -d '/etc'; diff --git a/lib/overload.pm b/lib/overload.pm index deb0b1a0f2..ce339cd037 100644 --- a/lib/overload.pm +++ b/lib/overload.pm @@ -1,6 +1,6 @@ package overload; -our $VERSION = '1.20'; +our $VERSION = '1.21'; %ops = ( with_assign => "+ - * / % ** << >> x .", @@ -1231,7 +1231,7 @@ Put this in F<symbolic.pm> in your Perl library directory: This module is very unusual as overloaded modules go: it does not provide any usual overloaded operators, instead it provides an -implementation for L<C<nomethod>>. In this example the C<nomethod> +implementation for L</C<nomethod>>. In this example the C<nomethod> subroutine returns an object which encapsulates operations done over the objects: C<< symbolic->new(3) >> contains C<['n', 3]>, C<< 2 + symbolic->new(3) >> contains C<['+', 2, ['n', 3]]>. diff --git a/lib/perl5db.pl b/lib/perl5db.pl index b791f5aa4b..54d66228e3 100644 --- a/lib/perl5db.pl +++ b/lib/perl5db.pl @@ -523,7 +523,7 @@ BEGIN { # Debugger for Perl 5.00x; perl5db.pl patch level: use vars qw($VERSION $header); -$VERSION = '1.39_07'; +$VERSION = '1.39_08'; $header = "perl5db.pl version $VERSION"; @@ -1513,7 +1513,7 @@ We then determine what the console should be on various systems: undef $console; } -=item * Unix - use C</dev/tty>. +=item * Unix - use F</dev/tty>. =cut |