FAQ tweak for Vanina Arca <varca@baufest.com>.
Jarkko Hietaniemi [Wed, 13 Jun 2001 16:22:27 +0000 (16:22 +0000)]
p4raw-id: //depot/perl@10568

pod/perlfaq6.pod

index 45f0966..121f66c 100644 (file)
@@ -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";
        }
     }