summaryrefslogtreecommitdiffhomepage
path: root/perl6.html.markdown
diff options
context:
space:
mode:
authorLevi Bostian <levi.bostian@gmail.com>2015-10-09 10:11:46 -0500
committerLevi Bostian <levi.bostian@gmail.com>2015-10-09 10:11:46 -0500
commitdcd9093d6467166a2946008c55f5e0582a15e20c (patch)
treed0df5a6fb5c4e321333f86d4f27af881e66cf57d /perl6.html.markdown
parent10ac3c9eb73f3def5de76d1383f86d4423e0b393 (diff)
parent4b74a7a76d5840cee8f713605347a6cad245d4bb (diff)
Merge pull request #1404 from tecknicaltom/master
[perl6] 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 2b45f661..43327edb 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,