diff options
author | Father Chrysostomos <sprout@cpan.org> | 2012-01-05 23:10:04 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2012-01-05 23:26:45 -0800 |
commit | 61cbec0f62c35f19138c0bcee282e0635ba627a2 (patch) | |
tree | 295f4e2a43d978bc2bdd28941bc30777b68960b7 /pod/perlsyn.pod | |
parent | 9d3d191bddb50daad7a3277b83779de06c7bf620 (diff) | |
download | perl-61cbec0f62c35f19138c0bcee282e0635ba627a2.tar.gz |
perlsyn: wrap long verbatim line
Diffstat (limited to 'pod/perlsyn.pod')
-rw-r--r-- | pod/perlsyn.pod | 3 |
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 }} |