Author: lwall
Date: 2010-07-15 19:24:08 +0200 (Thu, 15 Jul 2010)
New Revision: 31702
Modified:
docs/Perl6/Spec/S06-routines.pod
Log:
[S06] ss/is context/is dynamic/ fossil
Modified: docs/Perl6/Spec/S06-routines.pod
===================================================================
--- docs/Perl6/Spec/S06-routines.pod 2010-07-15 17:21:19 UTC (rev 31701)
+++ docs/Perl6/Spec/S06-routines.pod 2010-07-15 17:24:08 UTC (rev 31702)
@@ -457,7 +457,7 @@
Similarly, you may define dynamically scoped subroutines:
- my sub myfunc ($x) is context { ... }
+ my sub myfunc ($x) is dynamic { ... }
my sub &*myfunc ($x) { ... } # same thing
This may then be invoked via the syntax for dynamic variables: