Author: lwall
Date: 2010-01-26 17:08:49 +0100 (Tue, 26 Jan 2010)
New Revision: 29589

Modified:
   docs/Perl6/Spec/S03-operators.pod
Log:
[S03] braino on previous patch


Modified: docs/Perl6/Spec/S03-operators.pod
===================================================================
--- docs/Perl6/Spec/S03-operators.pod   2010-01-26 16:02:43 UTC (rev 29588)
+++ docs/Perl6/Spec/S03-operators.pod   2010-01-26 16:08:49 UTC (rev 29589)
@@ -2747,7 +2747,7 @@
 
     @a[foo()] = bar();           # foo() and bar() called in list context
     @a[item foo()] = item bar(); # foo() and bar() called in item context
-    @a[$ foo()] = $(bar());      # same thing
+    @a[$(foo())] = $(bar());     # same thing
     @a[+foo()] = +bar();         # foo() and bar() called in numeric context
     %a{~foo()} = ~bar();         # foo() and bar() called in string context
 

Reply via email to