Author: lwall
Date: 2010-07-09 19:08:24 +0200 (Fri, 09 Jul 2010)
New Revision: 31595
Modified:
docs/Perl6/Spec/S06-routines.pod
Log:
[S06] = should be :=
Modified: docs/Perl6/Spec/S06-routines.pod
===================================================================
--- docs/Perl6/Spec/S06-routines.pod 2010-07-09 16:51:08 UTC (rev 31594)
+++ docs/Perl6/Spec/S06-routines.pod 2010-07-09 17:08:24 UTC (rev 31595)
@@ -165,9 +165,9 @@
my proto sub foo (|$cap (@args)) {
do-something-before(@args);
- my |$retval = MULTI-DISPATCH-CALLWITH($?ROUTINE,$cap);
+ my |$retcap := MULTI-DISPATCH-CALLWITH($?ROUTINE,$cap);
do-something-after(@args);
- return |$retval;
+ return |$retcap;
}
which optimizes (we hope) to an inlined multidispatcher to locate all