Author: ruoso
Date: 2009-09-21 21:21:37 +0200 (Mon, 21 Sep 2009)
New Revision: 28340

Modified:
   docs/Perl6/Spec/S08-capture.pod
Log:
[S08] another typo by mberends++, s/list/array/ as pointed by PerlJam++ and 
pmichaud++

Modified: docs/Perl6/Spec/S08-capture.pod
===================================================================
--- docs/Perl6/Spec/S08-capture.pod     2009-09-21 19:01:22 UTC (rev 28339)
+++ docs/Perl6/Spec/S08-capture.pod     2009-09-21 19:21:37 UTC (rev 28340)
@@ -66,7 +66,7 @@
 The basic underlying concept is that a Parcel behaves much like a
 list, but it doesn't enforce any context, in a way that no flattening
 or coercion is done. When you use the Positional API on a Parcel, it
-will include all the listed items, wether they look like named
+will include all the listed items, whether they look like named
 arguments or positional arguments. For example:
 
   1, 2, :a<b>
@@ -133,7 +133,8 @@
 
   say $a[1;1;1];
 
-Note that if you assign that parcel to list, it will be flattened, so:
+Note that if you assign that parcel to an array, it will be flattened,
+so:
 
   my @a = 1, (2, (3, 4));
   say @a[3];
@@ -144,7 +145,7 @@
 
   say @a[1;1;1];
 
-As the element 1 of the list @a is not a Capture or a Parcel, it is
+As the element 1 of the array @a is not a Capture or a Parcel, it is
 not possible for the .[] operator to traverse it.
 
 [Conjecture: It is still not clear if the multidimensional access

Reply via email to