diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-13 16:22:27 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-13 16:22:27 +0000 |
commit | fd89e497d9261f4c36b30a96d9f5e9fe67facce5 (patch) | |
tree | f15bb28eefff221dbf15f33a74680bd0c5f0752b /pod | |
parent | 13b6944138ec6d809cd66c2a0139b73f7e2de094 (diff) | |
download | perl-fd89e497d9261f4c36b30a96d9f5e9fe67facce5.tar.gz |
FAQ tweak for Vanina Arca <varca@baufest.com>.
p4raw-id: //depot/perl@10568
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perlfaq6.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlfaq6.pod b/pod/perlfaq6.pod index 45f096632c..121f66c491 100644 --- a/pod/perlfaq6.pod +++ b/pod/perlfaq6.pod @@ -115,7 +115,7 @@ Here's code that finds everything between START and END in a paragraph: undef $/; # read in whole file, not just one line or paragraph while ( <> ) { - while ( /START(.*?)END/sm ) { # /s makes . cross line boundaries + while ( /START(.*?)END/sgm ) { # /s makes . cross line boundaries print "$1\n"; } } |