diff options
-rw-r--r-- | lib/Exporter/Heavy.pm | 2 | ||||
-rw-r--r-- | pod/perl561delta.pod | 2 | ||||
-rw-r--r-- | pod/perl56delta.pod | 2 | ||||
-rw-r--r-- | pod/perldebguts.pod | 2 | ||||
-rw-r--r-- | pod/perldebug.pod | 2 | ||||
-rw-r--r-- | pod/perlfaq4.pod | 10 | ||||
-rw-r--r-- | pod/perlfaq6.pod | 2 | ||||
-rw-r--r-- | pod/perlfunc.pod | 2 | ||||
-rw-r--r-- | pod/perlguts.pod | 2 | ||||
-rw-r--r-- | pod/perlpacktut.pod | 2 | ||||
-rw-r--r-- | pod/perlsub.pod | 6 | ||||
-rw-r--r-- | pod/perltodo.pod | 4 | ||||
-rw-r--r-- | pod/perlunicode.pod | 4 | ||||
-rw-r--r-- | pod/perlutil.pod | 6 | ||||
-rw-r--r-- | pod/perlxs.pod | 2 |
15 files changed, 25 insertions, 25 deletions
diff --git a/lib/Exporter/Heavy.pm b/lib/Exporter/Heavy.pm index b3afe9cbc3..d1c4a10e51 100644 --- a/lib/Exporter/Heavy.pm +++ b/lib/Exporter/Heavy.pm @@ -12,7 +12,7 @@ our $Verbose; Exporter::Heavy - Exporter guts -=head1 SYNOPIS +=head1 SYNOPSIS (internal use only) diff --git a/pod/perl561delta.pod b/pod/perl561delta.pod index 86235f0387..9ac85452e0 100644 --- a/pod/perl561delta.pod +++ b/pod/perl561delta.pod @@ -1608,7 +1608,7 @@ messages. For example: =head1 NAME - sample - Using GetOpt::Long and Pod::Usage + sample - Using Getopt::Long and Pod::Usage =head1 SYNOPSIS diff --git a/pod/perl56delta.pod b/pod/perl56delta.pod index 75d7728fda..5262c37c3b 100644 --- a/pod/perl56delta.pod +++ b/pod/perl56delta.pod @@ -1011,7 +1011,7 @@ messages. For example: =head1 NAME - sample - Using GetOpt::Long and Pod::Usage + sample - Using Getopt::Long and Pod::Usage =head1 SYNOPSIS diff --git a/pod/perldebguts.pod b/pod/perldebguts.pod index ff2b074ec4..827bb2f7d0 100644 --- a/pod/perldebguts.pod +++ b/pod/perldebguts.pod @@ -967,4 +967,4 @@ L<perlguts>, L<perlrun> L<re>, and -L<Devel::Dprof>. +L<Devel::DProf>. diff --git a/pod/perldebug.pod b/pod/perldebug.pod index bb01bd3e94..7f58ddfce0 100644 --- a/pod/perldebug.pod +++ b/pod/perldebug.pod @@ -948,7 +948,7 @@ L<perldebtut>, L<perldebguts>, L<re>, L<DB>, -L<Devel::Dprof>, +L<Devel::DProf>, L<dprofpp>, L<Dumpvalue>, and diff --git a/pod/perlfaq4.pod b/pod/perlfaq4.pod index 19066f4cec..d145eb643e 100644 --- a/pod/perlfaq4.pod +++ b/pod/perlfaq4.pod @@ -1849,7 +1849,7 @@ in L<perltoot>. =head2 How can I use a reference as a hash key? -You can't do this directly, but you could use the standard Tie::Refhash +You can't do this directly, but you could use the standard Tie::RefHash module distributed with Perl. =head1 Data: Misc @@ -1919,10 +1919,10 @@ respectively. =head2 How do I keep persistent data across program calls? For some specific applications, you can use one of the DBM modules. -See L<AnyDBM_File>. More generically, you should consult the FreezeThaw, -Storable, or Class::Eroot modules from CPAN. Starting from Perl 5.8 -Storable is part of the standard distribution. Here's one example using -Storable's C<store> and C<retrieve> functions: +See L<AnyDBM_File>. More generically, you should consult the FreezeThaw +or Storable modules from CPAN. Starting from Perl 5.8 Storable is part +of the standard distribution. Here's one example using Storable's C<store> +and C<retrieve> functions: use Storable; store(\%hash, "filename"); diff --git a/pod/perlfaq6.pod b/pod/perlfaq6.pod index 6ddc0be149..fe53ea8ab0 100644 --- a/pod/perlfaq6.pod +++ b/pod/perlfaq6.pod @@ -643,7 +643,7 @@ programming language, you insensitive scoundrel! Starting from Perl 5.6 Perl has had some level of multibyte character support. Perl 5.8 or later is recommended. Supported multibyte -character repetoires include Unicode, and legacy encodings +character repertoires include Unicode, and legacy encodings through the Encode module. See L<perluniintro>, L<perlunicode>, and L<Encode>. diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod index 188d800ddf..39a6ea4cab 100644 --- a/pod/perlfunc.pod +++ b/pod/perlfunc.pod @@ -4236,7 +4236,7 @@ documentation. =item send SOCKET,MSG,FLAGS -Sends a message on a socket. Attemps to send the scalar MSG to the +Sends a message on a socket. Attempts to send the scalar MSG to the SOCKET filehandle. Takes the same flags as the system call of the same name. On unconnected sockets you must specify a destination to send TO, in which case it does a C C<sendto>. Returns the number of diff --git a/pod/perlguts.pod b/pod/perlguts.pod index 8a1d511cde..2b8faf007f 100644 --- a/pod/perlguts.pod +++ b/pod/perlguts.pod @@ -247,7 +247,7 @@ portion of the string between the "real" and the "fake" beginnings is shown in parentheses, and the values of C<SvCUR> and C<SvLEN> reflect the fake beginning, not the real one. -Something similar to the offset hack is perfomed on AVs to enable +Something similar to the offset hack is performed on AVs to enable efficient shifting and splicing off the beginning of the array; while C<AvARRAY> points to the first element in the array that is visible from Perl, C<AvALLOC> points to the real start of the C array. These are diff --git a/pod/perlpacktut.pod b/pod/perlpacktut.pod index 93ec186a43..423ab03ae1 100644 --- a/pod/perlpacktut.pod +++ b/pod/perlpacktut.pod @@ -727,7 +727,7 @@ call, creating the items we intend to stuff into the C<$env> buffer: to each key (in C<$_>) it adds the C<=> separator and the hash entry value. Each triplet is packed with the template code sequence C<A*A*Z*> that is multiplied with the number of keys. (Yes, that's what the C<keys> -function resturns in scalar context.) To get the very last null byte, +function returns in scalar context.) To get the very last null byte, we add a C<0> at the end of the C<pack> list, to be packed with C<C>. (Attentive readers may have noticed that we could have omitted the 0.) diff --git a/pod/perlsub.pod b/pod/perlsub.pod index efadf8f848..aa5fd5b2cf 100644 --- a/pod/perlsub.pod +++ b/pod/perlsub.pod @@ -1204,7 +1204,7 @@ Note however that some built-ins can't have their syntax expressed by a prototype (such as C<system> or C<chomp>). If you override them you won't be able to fully mimic their original syntax. -The built-ins C<do>, C<require> and C<glob> can also be overriden, but due +The built-ins C<do>, C<require> and C<glob> can also be overridden, but due to special magic, their original syntax is preserved, and you don't have to define a prototype for their replacements. (You can't override the C<do BLOCK> syntax, though). @@ -1214,9 +1214,9 @@ C<require> replacement as C<require Foo::Bar>, it will actually receive the argument C<"Foo/Bar.pm"> in @_. See L<perlfunc/require>. And, as you'll have noticed from the previous example, if you override -C<glob>, the C<E<lt>*E<gt>> glob operator is overriden as well. +C<glob>, the C<E<lt>*E<gt>> glob operator is overridden as well. -Finally, some built-ins (e.g. C<exists> or C<grep>) can't be overriden. +Finally, some built-ins (e.g. C<exists> or C<grep>) can't be overridden. =head2 Autoloading diff --git a/pod/perltodo.pod b/pod/perltodo.pod index 94c4f9d61f..1df5fdafca 100644 --- a/pod/perltodo.pod +++ b/pod/perltodo.pod @@ -148,7 +148,7 @@ Reader-writer locks, realtime/asynchronous IO =head2 IPv6 Support -There are non-core modules, such as C<Net::IPv6>, but these will need +There are non-core modules, such as C<Socket6>, but these will need integrating when IPv6 actually starts to really happen. See RFC 2292 and RFC 2553. @@ -223,7 +223,7 @@ C<&>, C<oct>, C<hex> and C<pack>. =head2 Replace pod2html with something using Pod::Parser -The CPAN module C<Malik::Pod::Html> may be a more suitable basis for a +The CPAN module C<Marek::Pod::Html> may be a more suitable basis for a C<pod2html> convertor; the current one duplicates the functionality abstracted in C<Pod::Parser>, which makes updating the POD language difficult. diff --git a/pod/perlunicode.pod b/pod/perlunicode.pod index 3edc0ca3b2..db5a475914 100644 --- a/pod/perlunicode.pod +++ b/pod/perlunicode.pod @@ -730,9 +730,9 @@ As you can see, the continuation bytes all begin with C<10>, and the leading bits of the start byte tells how many bytes the are in the encoded character. -=item UTF-EBDIC +=item UTF-EBCDIC -Like UTF-8, but EBDCIC-safe, as UTF-8 is ASCII-safe. +Like UTF-8, but EBCDIC-safe, as UTF-8 is ASCII-safe. =item UTF-16, UTF-16BE, UTF16-LE, Surrogates, and BOMs (Byte Order Marks) diff --git a/pod/perlutil.pod b/pod/perlutil.pod index 93b9e0b51d..57eddda571 100644 --- a/pod/perlutil.pod +++ b/pod/perlutil.pod @@ -171,9 +171,9 @@ very useful for creating skeletons of pure Perl modules. =item L<dprofpp|dprofpp> -Perl comes with a profiler, the F<Devel::Dprof> module. The +Perl comes with a profiler, the F<Devel::DProf> module. The F<dprofpp> utility analyzes the output of this profiler and tells you -which subroutines are taking up the most run time. See L<Devel::Dprof> +which subroutines are taking up the most run time. See L<Devel::DProf> for more information. =item L<perlcc|perlcc> @@ -190,6 +190,6 @@ L<podchecker|podchecker>, L<splain|splain>, L<perldiag>, L<roffitall|roffitall>, L<a2p|a2p>, L<s2p|s2p>, L<find2perl|find2perl>, L<File::Find|File::Find>, L<pl2pm|pl2pm>, L<perlbug|perlbug>, L<h2ph|h2ph>, L<c2ph|c2ph>, L<h2xs|h2xs>, L<dprofpp|dprofpp>, -L<Devel::Dprof>, L<perlcc|perlcc> +L<Devel::DProf>, L<perlcc|perlcc> =cut diff --git a/pod/perlxs.pod b/pod/perlxs.pod index 5146a1e45d..0398641962 100644 --- a/pod/perlxs.pod +++ b/pod/perlxs.pod @@ -1714,7 +1714,7 @@ have been designed so that they will work with non-threaded Perl as well. It is therefore strongly recommended that these macros be used by all XS modules that make use of static data. -The easiest way to get a template set of macros to use is by specifiying +The easiest way to get a template set of macros to use is by specifying the C<-g> (C<--global>) option with h2xs (see L<h2xs>). Below is an example module that makes use of the macros. |