summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2011-04-18 08:44:00 -0700
committerFather Chrysostomos <sprout@cpan.org>2011-04-18 08:44:00 -0700
commitb6cc6faaf8e37229cafbb919ac5f48d13d9d5373 (patch)
tree7941d6f78ab3589c5a5c52bc840595f705a13545
parent122c7b7de0fe31478bfa3a2a1ca3718c938c2998 (diff)
downloadperl-b6cc6faaf8e37229cafbb919ac5f48d13d9d5373.tar.gz
perldelta: typos
-rw-r--r--pod/perldelta.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perldelta.pod b/pod/perldelta.pod
index da5b3545e8..0673a4b210 100644
--- a/pod/perldelta.pod
+++ b/pod/perldelta.pod
@@ -939,7 +939,7 @@ parentheses, like this:
for $x (qw(a b c)) { ... }
This is being deprecated because C<qw(a b c)> is supposed to mean
-C<"a", "b", "c"> not C<("a", "b", "c")>. I.e. this doesn't compile:
+C<"a", "b", "c"> not C<("a", "b", "c")>. I.e., this doesn't compile:
for my $i "a", "b", "c" { }
@@ -957,7 +957,7 @@ Note that this does not change the behavior of cases like:
use POSIX qw(setlocale localeconv)
our @EXPORT = qw(foo bar baz);
-Where a list with our without parentheses could have been provided.
+Where a list with or without parentheses could have been provided.
=head2 C<\N{BELL}>