Author: masak
Date: 2009-05-19 09:50:40 +0200 (Tue, 19 May 2009)
New Revision: 26883
Modified:
docs/Perl6/Spec/S09-data.pod
docs/Perl6/Spec/S32-setting-library/IO.pod
Log:
fixed a typo and a missing comma
Modified: docs/Perl6/Spec/S09-data.pod
===================================================================
--- docs/Perl6/Spec/S09-data.pod 2009-05-19 07:50:36 UTC (rev 26882)
+++ docs/Perl6/Spec/S09-data.pod 2009-05-19 07:50:40 UTC (rev 26883)
@@ -388,7 +388,7 @@
my int @ints[42; *]; # Second dimension unlimited/ragged
push(@ints[41], getsomeints());
-but I<any> dimensional of an array may be declared as autoextending:
+but I<any> dimension of an array may be declared as autoextending:
my @calendar[12;*;24]; # day-of-month dimension unlimited/ragged
@calendar[1;42;8] = 'meeting' # See you on January 42nd
Modified: docs/Perl6/Spec/S32-setting-library/IO.pod
===================================================================
--- docs/Perl6/Spec/S32-setting-library/IO.pod 2009-05-19 07:50:36 UTC (rev
26882)
+++ docs/Perl6/Spec/S32-setting-library/IO.pod 2009-05-19 07:50:40 UTC (rev
26883)
@@ -888,7 +888,7 @@
Str :$enc = "Unicode",
--> Str|Buf
) is export
- multi slurp (Str $filename
+ multi slurp (Str $filename,
Bool :$bin = False,
Str :$enc = "Unicode",
--> Str|Buf