summaryrefslogtreecommitdiff
path: root/pod/perlintro.pod
diff options
context:
space:
mode:
Diffstat (limited to 'pod/perlintro.pod')
-rw-r--r--pod/perlintro.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlintro.pod b/pod/perlintro.pod
index b069c51960..9973fd62c1 100644
--- a/pod/perlintro.pod
+++ b/pod/perlintro.pod
@@ -302,7 +302,7 @@ are defined.
Using C<my> in combination with a C<use strict;> at the top of
your Perl scripts means that the interpreter will pick up certain common
programming errors. For instance, in the example above, the final
-C<print $b> would cause a compile-time error and prevent you from
+C<print $y> would cause a compile-time error and prevent you from
running the program. Using C<strict> is highly recommended.
=head2 Conditional and looping constructs