diff options
author | Michael G. Schwern <schwern@pobox.com> | 2001-02-03 17:46:38 -0500 |
---|---|---|
committer | Nick Ing-Simmons <nik@tiuk.ti.com> | 2001-02-04 17:55:24 +0000 |
commit | 5b3eff12f7c4ea0bd1324f2fe0a16edec8764c93 (patch) | |
tree | 7de82155c4854f5aa16ba942e44d9d0f8d021539 /pod/perlutil.pod | |
parent | bccbfa77316f269e35ea29247d7506d2c3ba7e11 (diff) | |
download | perl-5b3eff12f7c4ea0bd1324f2fe0a16edec8764c93.tar.gz |
Re: [PATCH lots of pod/] s/chop/chomp/g
Message-Id: <20010203224638.E10493@blackrider.aocn.com>
p4raw-id: //depot/perl@8689
Diffstat (limited to 'pod/perlutil.pod')
-rw-r--r-- | pod/perlutil.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlutil.pod b/pod/perlutil.pod index 7b56a17503..be7a345f79 100644 --- a/pod/perlutil.pod +++ b/pod/perlutil.pod @@ -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; } |