summaryrefslogtreecommitdiffhomepage
path: root/perl6.html.markdown
diff options
context:
space:
mode:
authorTom Samstag <github@modtwo.com>2015-10-08 08:46:54 -0700
committerTom Samstag <github@modtwo.com>2015-10-08 08:46:54 -0700
commit4b74a7a76d5840cee8f713605347a6cad245d4bb (patch)
tree9861fb5842dd6fab89f35cd5b2822b74fe7fdbe4 /perl6.html.markdown
parentabd7444f9e5343f597b561a69297122142881fc8 (diff)
fix the output of ff example
Diffstat (limited to 'perl6.html.markdown')
-rw-r--r--perl6.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl6.html.markdown b/perl6.html.markdown
index 63c0830a..26373c28 100644
--- a/perl6.html.markdown
+++ b/perl6.html.markdown
@@ -1429,7 +1429,7 @@ for <well met young hero we shall meet later> {
# A flip-flop can change state as many times as needed:
for <test start print it stop not printing start print again stop not anymore> {
.say if $_ eq 'start' ^ff^ $_ eq 'stop'; # exclude both "start" and "stop",
- #=> "print this printing again"
+ #=> "print it print again"
}
# you might also use a Whatever Star,