FAQ tweak for Vanina Arca <varca@baufest.com>.
[p5sagit/p5-mst-13.2.git] / pod / perllexwarn.pod
index 3dd3ba9..951a470 100644 (file)
@@ -325,16 +325,16 @@ and C<join> can all produce a C<"Useless use of xxx in void context">
 warning.
 
     use warnings ;
+
     time ;
+
     {
         use warnings FATAL => qw(void) ;
         length "abc" ;
     }
+
     join "", 1,2,3 ;
+
     print "done\n" ;     
 
 When run it produces this output
@@ -468,7 +468,7 @@ Consider this example:
         bless [], $class ;
     }
 
-   
+
     1 ;
 
 The code below makes use of both modules, but it only enables warnings from