diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-08-02 07:09:35 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-08-02 07:09:35 +0000 |
commit | 707102d0d0b0e4514efd3ca5ca4f3bf30e3fbff0 (patch) | |
tree | 9e808b57cae74376f875a2e7c847aad2fffe6894 | |
parent | 28ac10b1472aabd4f0e1b4d4fe7f262c1854accd (diff) | |
download | perl-707102d0d0b0e4514efd3ca5ca4f3bf30e3fbff0.tar.gz |
fixes for pod noises
p4raw-id: //depot/maint-5.005/perl@1708
-rw-r--r-- | ext/B/B/Bytecode.pm | 2 | ||||
-rw-r--r-- | ext/Thread/Thread/Specific.pm | 4 | ||||
-rw-r--r-- | pod/perlembed.pod | 2 | ||||
-rw-r--r-- | pod/perlfaq.pod | 2 |
4 files changed, 8 insertions, 2 deletions
diff --git a/ext/B/B/Bytecode.pm b/ext/B/B/Bytecode.pm index 60b93a5b23..0c5a58dc54 100644 --- a/ext/B/B/Bytecode.pm +++ b/ext/B/B/Bytecode.pm @@ -887,7 +887,7 @@ C<main_root> and C<curpad> are omitted. =back -=head EXAMPLES +=head1 EXAMPLES perl -MO=Bytecode,-O6,-o,foo.plc foo.pl diff --git a/ext/Thread/Thread/Specific.pm b/ext/Thread/Thread/Specific.pm index c3591f4b94..9c8a66a9e6 100644 --- a/ext/Thread/Thread/Specific.pm +++ b/ext/Thread/Thread/Specific.pm @@ -9,6 +9,10 @@ Thread::Specific - thread-specific keys use Thread::Specific; my $k = key_create Thread::Specific; +=head1 DESCRIPTION + +C<key_create> returns a unique thread-specific key. + =cut sub import { diff --git a/pod/perlembed.pod b/pod/perlembed.pod index 0323fd1110..c09d6e33cb 100644 --- a/pod/perlembed.pod +++ b/pod/perlembed.pod @@ -35,6 +35,8 @@ Read on... =head2 ROADMAP +=over 5 + L<Compiling your C program> L<Adding a Perl interpreter to your C program> diff --git a/pod/perlfaq.pod b/pod/perlfaq.pod index 1d81077760..700fd10566 100644 --- a/pod/perlfaq.pod +++ b/pod/perlfaq.pod @@ -117,7 +117,7 @@ in respect of this information or its use. =over 4 -=head 22/June/98 +=item 22/June/98 Significant changes throughout in preparation for the 5.005 release. |