Author: moritz
Date: 2010-05-22 09:41:07 +0200 (Sat, 22 May 2010)
New Revision: 30747
Modified:
docs/Perl6/Spec/S03-operators.pod
Log:
[S03] s/shaped/nested/ when talking about auto-recursive hyper ops
Modified: docs/Perl6/Spec/S03-operators.pod
===================================================================
--- docs/Perl6/Spec/S03-operators.pod 2010-05-22 03:32:58 UTC (rev 30746)
+++ docs/Perl6/Spec/S03-operators.pod 2010-05-22 07:41:07 UTC (rev 30747)
@@ -4054,7 +4054,7 @@
Note that method calls are really postfix operators, not infix, so you
shouldn't put a C<«> after the dot.
-Hyper operators are defined recursively on shaped arrays, so:
+Hyper operators are defined recursively on nested arrays, so:
-« [[1, 2], 3] # [-«[1, 2], -«3]
# == [[-1, -2], -3]