diff options
author | Mark-Jason Dominus <mjd@plover.com> | 2002-03-15 18:48:42 +0000 |
---|---|---|
committer | Abhijit Menon-Sen <ams@wiw.org> | 2002-03-15 17:53:23 +0000 |
commit | 0d4213c39605fa04aafc0c3a24e3ad430daab14e (patch) | |
tree | 8b551954b64c90fc62a7d62b674463c2ff5387f3 | |
parent | b3fe5a4cdcf4bcad47de92d4dfaa5a484780269b (diff) | |
download | perl-0d4213c39605fa04aafc0c3a24e3ad430daab14e.tar.gz |
minor corrections in perldelta.pod
Message-Id: <20020315184842.13573.qmail@plover.com>
p4raw-id: //depot/perl@15246
-rw-r--r-- | pod/perldelta.pod | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/pod/perldelta.pod b/pod/perldelta.pod index c07cda8a2d..5c68ee9799 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -2384,7 +2384,7 @@ is made, a warning is given. =item * C<push @a;> and C<unshift @a;> (with no values to push or unshift) -now give a warning. This may be a problem for generated and evaled +now gives a warning. This may be a problem for generated and evaled code. =item * @@ -2396,11 +2396,12 @@ for the C<"c"> format and a number less than -128 or more than 127. =item * Certain regex modifiers such as C<(?o)> make sense only if applied to -the entire regex. You will an optional warning if you try to do otherwise. +the entire regex. You will get an optional warning if you try to do +otherwise. =item * -Using arrays or hashes as references (e.g. C<< %foo->{bar} >> +Using arrays or hashes as references (e.g. C<< %foo->{bar} >> has been deprecated for a while. Now you will get an optional warning. =item * |