summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKen Williams <u0048513@u0048513-mac.local>2009-08-07 10:49:26 -0500
committerDavid Mitchell <davem@iabyn.com>2009-08-11 23:27:42 +0100
commit1e76fcb5b230933aa5d13611679e675ec9407ddc (patch)
tree8818f6854dc92c2c1d08a578c6a105dd535a32f1
parent384dc2341d61661c6296a03c8fcee78bf53c3277 (diff)
downloadperl-1e76fcb5b230933aa5d13611679e675ec9407ddc.tar.gz
Removed '...' pseudocode-indicator from docs about '...' flip-flop operator
-rw-r--r--pod/perl5101delta.pod4
1 files changed, 3 insertions, 1 deletions
diff --git a/pod/perl5101delta.pod b/pod/perl5101delta.pod
index cc4ea32219..3818d1f317 100644
--- a/pod/perl5101delta.pod
+++ b/pod/perl5101delta.pod
@@ -35,7 +35,9 @@ However, contrary to 5.10.0, evaluating the flip-flop operators in boolean
context ensures it can now be useful in a C<when()>, notably for
implementing bistable conditions, like in:
- when (/^=begin/ .. /^=end/) { ... }
+ when (/^=begin/ .. /^=end/) {
+ # do something
+ }
=item defined-or operator