summaryrefslogtreecommitdiff
path: root/pod/perlsyn.pod
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2012-01-05 23:10:04 -0800
committerFather Chrysostomos <sprout@cpan.org>2012-01-05 23:26:45 -0800
commit61cbec0f62c35f19138c0bcee282e0635ba627a2 (patch)
tree295f4e2a43d978bc2bdd28941bc30777b68960b7 /pod/perlsyn.pod
parent9d3d191bddb50daad7a3277b83779de06c7bf620 (diff)
downloadperl-61cbec0f62c35f19138c0bcee282e0635ba627a2.tar.gz
perlsyn: wrap long verbatim line
Diffstat (limited to 'pod/perlsyn.pod')
-rw-r--r--pod/perlsyn.pod3
1 files changed, 2 insertions, 1 deletions
diff --git a/pod/perlsyn.pod b/pod/perlsyn.pod
index b8eab4d5ad..be22639595 100644
--- a/pod/perlsyn.pod
+++ b/pod/perlsyn.pod
@@ -393,7 +393,8 @@ they aren't loops. You can double the braces to make them such, though.
if (/pattern/) {{
last if /fred/;
- next if /barney/; # same effect as "last", but doesn't document as well
+ next if /barney/; # same effect as "last",
+ # but doesn't document as well
# do something here
}}