Re: perldata
[email protected] (Steffen Mueller) Wed, 22 Jun 2005 10:49:57 +0200
| Newsgroups | perl.perlfaq.workers |
|---|---|
| Message-ID | <[email protected]> |
Hi,
Nosov Artem wrote:
> Please anybody correct the following line in perldata:
[...]
next time, please add a diff as follows:
--- perldata.pod 2005-03-08 11:09:24.000000000 +0100
+++ perldata_new.pod 2005-06-22 10:48:03.000000000 +0200
@@ -51,7 +51,7 @@
which works much like the word "these" or "those" does in English,
in that it indicates multiple values are expected.
- @days # ($days[0], $days[1],... $days[n])
+ @days # ($days[0], $days[1],... $days[n-1])
@days[3,4,5] # same as ($days[3],$days[4],$days[5])
@days{'a','c'} # same as ($days{'a'},$days{'c'})
This is Perl 5.8.4.
Steffen