Author: larry
Date: Thu Mar 29 16:14:45 2007
New Revision: 14366

Modified:
   doc/trunk/design/syn/S09.pod

Log:
clarifications suggested by thom++


Modified: doc/trunk/design/syn/S09.pod
==============================================================================
--- doc/trunk/design/syn/S09.pod        (original)
+++ doc/trunk/design/syn/S09.pod        Thu Mar 29 16:14:45 2007
@@ -387,12 +387,12 @@
 final dimension to make a ragged array functionally equivalent to an
 array of arrays:
 
-    my int @ints[42; *];            # Second dimension unlimited
+    my int @ints[42; *];            # Second dimension unlimited/ragged
     push(@ints[41], getsomeints());
 
 but I<any> dimensional of an array may be declared as autoextending:
 
-    my @calendar[12;*;24];          # "Month" dimension unlimited
+    my @calendar[12;*;24];          # day-of-month dimension unlimited/ragged
     @calendar[1;42;8] = 'meeting'   # See you on January 42nd
 
 It is also possible to specify that an array has an arbitrary number

Reply via email to