diff options
author | Abigail <abigail@abigail.be> | 2002-04-18 19:09:45 +0200 |
---|---|---|
committer | Abhijit Menon-Sen <ams@wiw.org> | 2002-04-18 16:16:26 +0000 |
commit | cb0b211a477c3c0b17df40bb6ed00d1e751523d3 (patch) | |
tree | c798a623a219b5d57819028f8d6e186d3dc57914 | |
parent | dad950375af87960d837efe539719a739e9c8f0f (diff) | |
download | perl-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.pod | 2 |
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. |