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/perlop.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/perlop.pod')
-rw-r--r-- | pod/perlop.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlop.pod b/pod/perlop.pod index ebe52c568e..464ba9917b 100644 --- a/pod/perlop.pod +++ b/pod/perlop.pod @@ -1746,7 +1746,7 @@ is roughly equivalent to: open(FOO, "echo *.c | tr -s ' \t\r\f' '\\012\\012\\012\\012'|"); while (<FOO>) { - chop; + chomp; chmod 0644, $_; } |