summaryrefslogtreecommitdiff
path: root/pod/perlfaq8.pod
diff options
context:
space:
mode:
authorMichael G. Schwern <schwern@pobox.com>2001-02-03 17:46:38 -0500
committerNick Ing-Simmons <nik@tiuk.ti.com>2001-02-04 17:55:24 +0000
commit5b3eff12f7c4ea0bd1324f2fe0a16edec8764c93 (patch)
tree7de82155c4854f5aa16ba942e44d9d0f8d021539 /pod/perlfaq8.pod
parentbccbfa77316f269e35ea29247d7506d2c3ba7e11 (diff)
downloadperl-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/perlfaq8.pod')
-rw-r--r--pod/perlfaq8.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlfaq8.pod b/pod/perlfaq8.pod
index d806ed67e7..1df3b6ac0a 100644
--- a/pod/perlfaq8.pod
+++ b/pod/perlfaq8.pod
@@ -321,7 +321,7 @@ go bump in the night, finally came up with this:
# been opened on a pipe...
system("/bin/stty $stty");
$_ = <MODEM_IN>;
- chop;
+ chomp;
if ( !m/^Connected/ ) {
print STDERR "$0: cu printed `$_' instead of `Connected'\n";
}