Author: lue
Date: 2010-03-29 01:07:56 +0200 (Mon, 29 Mar 2010)
New Revision: 30231

Modified:
   docs/Perl6/Spec/S03-operators.pod
Log:
[docs/Perl6/Spec] Fixed a P5 muscle-memory error

Modified: docs/Perl6/Spec/S03-operators.pod
===================================================================
--- docs/Perl6/Spec/S03-operators.pod   2010-03-28 22:15:23 UTC (rev 30230)
+++ docs/Perl6/Spec/S03-operators.pod   2010-03-28 23:07:56 UTC (rev 30231)
@@ -1761,7 +1761,7 @@
 
 you'd have to say something like
 
-    ($a[0] min $b[0], $a[1] max $b[1])
+    (@a[0] min @b[0], @a[1] max @b[1])
 
 Note that there is no guarantee that the resulting minimum and maximum come
 from the same side.  The two calculations are bundled but independent.

Reply via email to