Regen files for mainline.
[p5sagit/p5-mst-13.2.git] / pod / perlutil.pod
index 4ca1f9e..be7a345 100644 (file)
@@ -35,7 +35,7 @@ piped through your favourite pager.
 
 =item L<pod2html|pod2html> and L<pod2latex|pod2latex>
 
-As well as these two, there are two other convertors: F<pod2html> will
+As well as these two, there are two other converters: F<pod2html> will
 produce HTML pages from POD, and F<pod2latex>, which produces LaTeX
 files.
 
@@ -97,7 +97,7 @@ Similarly, F<s2p> converts F<sed> scripts to Perl programs. F<s2p> run
 on C<s/foo/bar> will produce a Perl program based around this:
 
     while (<>) {
-        chop;
+        chomp;
         s/foo/bar/g;
         print if $printit;
     }
@@ -170,10 +170,6 @@ for more information.
 
 F<perlcc> is the interface to the experimental Perl compiler suite.
 
-=item L<perlbc|perlbc>
-
-F<perlbc> is the interface to the experimental Perl bytecompiler suite.
-
 =back
 
 =head2 SEE ALSO
@@ -184,6 +180,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<perlbc|perlbc>
+L<Devel::Dprof>, L<perlcc|perlcc>
 
 =cut