summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbigail <abigail@abigail.be>2002-04-18 19:09:45 +0200
committerAbhijit Menon-Sen <ams@wiw.org>2002-04-18 16:16:26 +0000
commitcb0b211a477c3c0b17df40bb6ed00d1e751523d3 (patch)
treec798a623a219b5d57819028f8d6e186d3dc57914
parentdad950375af87960d837efe539719a739e9c8f0f (diff)
downloadperl-cb0b211a477c3c0b17df40bb6ed00d1e751523d3.tar.gz
Typo in pod/perldebtut.pod
Message-Id: <20020418150945.389.qmail@foad.org> p4raw-id: //depot/perl@15996
-rw-r--r--pod/perldebtut.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perldebtut.pod b/pod/perldebtut.pod
index e2c982dcb0..58a3f76577 100644
--- a/pod/perldebtut.pod
+++ b/pod/perldebtut.pod
@@ -71,7 +71,7 @@ We then do (always a good idea) a syntax check before we try to run it again:
hello syntax OK
And now when we run it, we get "\n" still, but at least we know why. Just
-getting this script to compile has exposed the '$varl' (with the letter 'l)
+getting this script to compile has exposed the '$varl' (with the letter 'l')
variable, and simply changing $varl to $var1 solves the problem.