diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-04-24 19:01:24 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-04-24 19:01:24 +0000 |
commit | a2293a43268c593a8a95d38299057a646f0fb089 (patch) | |
tree | 515232728afb60307b625135e36ae5a964b30148 /pod/perlsyn.pod | |
parent | 6f611a1a07288b915db6721d056da56a6d688631 (diff) | |
download | perl-a2293a43268c593a8a95d38299057a646f0fb089.tar.gz |
more pod nits (from Larry Virden)
p4raw-id: //depot/perl@5939
Diffstat (limited to 'pod/perlsyn.pod')
-rw-r--r-- | pod/perlsyn.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlsyn.pod b/pod/perlsyn.pod index 724ba12ac0..dfded2ecde 100644 --- a/pod/perlsyn.pod +++ b/pod/perlsyn.pod @@ -172,7 +172,7 @@ If the LABEL is omitted, the loop control statement refers to the innermost enclosing loop. This may include dynamically looking back your call-stack at run time to find the LABEL. Such desperate behavior triggers a warning if you use the C<use warnings> -praga or the B<-w> flag. +pragma or the B<-w> flag. Unlike a C<foreach> statement, a C<while> statement never implicitly localises any variables. @@ -483,7 +483,7 @@ Or Or if you are certainly that all the C<&&> clauses are true, you can use something like this, which "switches" on the value of the -C<HTTP_USER_AGENT> envariable. +C<HTTP_USER_AGENT> environment variable. #!/usr/bin/perl # pick out jargon file page based on browser |