X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=pod%2Fperlutil.pod;h=be7a345f79678d67692a75b7574d9eeba23d5538;hb=ec861bc19fa3da942464628dd3e86e9b82994ca4;hp=1b2c178b1f42fbf629d09805886364636f94765f;hpb=497711e7b1df022fefe2ed59a7b09c545fed3b3b;p=p5sagit%2Fp5-mst-13.2.git diff --git a/pod/perlutil.pod b/pod/perlutil.pod index 1b2c178..be7a345 100644 --- a/pod/perlutil.pod +++ b/pod/perlutil.pod @@ -35,7 +35,7 @@ piped through your favourite pager. =item L and L -As well as these two, there are two other convertors: F will +As well as these two, there are two other converters: F will produce HTML pages from POD, and F, which produces LaTeX files. @@ -97,7 +97,7 @@ Similarly, F converts F scripts to Perl programs. F run on C will produce a Perl program based around this: while (<>) { - chop; + chomp; s/foo/bar/g; print if $printit; }