From: Father Chrysostomos Date: Mon, 18 Apr 2011 15:44:00 +0000 (-0700) Subject: perldelta: typos X-Git-Tag: accepted/trunk/20130322.191538~4400 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b6cc6faaf8e37229cafbb919ac5f48d13d9d5373;p=platform%2Fupstream%2Fperl.git perldelta: typos --- diff --git a/pod/perldelta.pod b/pod/perldelta.pod index da5b354..0673a4b 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 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}>