diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-01-27 03:56:48 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-01-27 03:56:48 +0000 |
commit | a45bd81d7bee5835ad83b5249bac63256f8c94c0 (patch) | |
tree | dab1f7653808a838df28f550bf9c6f1f9a830e68 /lib | |
parent | ad31580623307f0b715ee0a148d5b2a56b4280ff (diff) | |
download | perl-a45bd81d7bee5835ad83b5249bac63256f8c94c0.tar.gz |
various pod nits identified by installhtml (all fixed except
unresolved links)
p4raw-id: //depot/perl@4910
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Class/Struct.pm | 1 | ||||
-rw-r--r-- | lib/File/Find.pm | 4 | ||||
-rw-r--r-- | lib/File/Spec/VMS.pm | 3 | ||||
-rw-r--r-- | lib/Pod/Html.pm | 2 | ||||
-rw-r--r-- | lib/UNIVERSAL.pm | 4 |
5 files changed, 9 insertions, 5 deletions
diff --git a/lib/Class/Struct.pm b/lib/Class/Struct.pm index 6227ee63ca..b4f2117557 100644 --- a/lib/Class/Struct.pm +++ b/lib/Class/Struct.pm @@ -520,6 +520,7 @@ struct's constructor. print "(which was a ", $cat->breed->name, ")\n"; print "had two kittens: ", join(' and ', @{$cat->kittens}), "\n"; +=back =head1 Author and Modification History diff --git a/lib/File/Find.pm b/lib/File/Find.pm index 0485bce8ed..9963d8198b 100644 --- a/lib/File/Find.pm +++ b/lib/File/Find.pm @@ -53,12 +53,12 @@ If either I<follow> or I<follow_fast> is in effect: =over 6 -=item +=item * It is guarantueed that an I<lstat> has been called before the user's I<wanted()> function is called. This enables fast file checks involving S< _>. -=item +=item * There is a variable C<$File::Find::fullname> which holds the absolute pathname of the file with all symbolic links resolved diff --git a/lib/File/Spec/VMS.pm b/lib/File/Spec/VMS.pm index 00c068accb..79491463cd 100644 --- a/lib/File/Spec/VMS.pm +++ b/lib/File/Spec/VMS.pm @@ -22,6 +22,8 @@ See File::Spec::Unix for a documentation of the methods provided there. This package overrides the implementation of these methods, not the semantics. +=over + =item eliminate_macros Expands MM[KS]/Make macros in a text string, using the contents of @@ -111,6 +113,7 @@ sub fixpath { $fixedpath; } +=back =head2 Methods always loaded diff --git a/lib/Pod/Html.pm b/lib/Pod/Html.pm index c2f8865c59..4d77bc0a11 100644 --- a/lib/Pod/Html.pm +++ b/lib/Pod/Html.pm @@ -466,7 +466,7 @@ END_OF_HEAD process_over(); } elsif (/^=back/) { # =back process_back(); - } elsif (/^=for\s+(\S+)\s+(.*)/si) {# =for + } elsif (/^=for\s+(\S+)\s*(.*)/si) {# =for process_for($1,$2); } else { /^=(\S*)\s*/; diff --git a/lib/UNIVERSAL.pm b/lib/UNIVERSAL.pm index dc02423029..13cce5853b 100644 --- a/lib/UNIVERSAL.pm +++ b/lib/UNIVERSAL.pm @@ -67,12 +67,12 @@ of the following statements is true. =over 8 -=item +=item * C<VAL> is a blessed reference and is blessed into package C<TYPE> or inherits from package C<TYPE> -=item +=item * C<VAL> is a reference to a C<TYPE> of perl variable (er 'HASH') |