X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=pod%2Fperllexwarn.pod;h=951a470b2e59930d88cc428f18a0b6fd42110b38;hb=5d80033ae3014e41bf0e3cd4b86e2265d9f1ba6d;hp=3dd3ba977aad4b466e3d2c8188aef118c892703b;hpb=22d4bb9ccb8701e68f9243547d7e3a3c55f70908;p=p5sagit%2Fp5-mst-13.2.git diff --git a/pod/perllexwarn.pod b/pod/perllexwarn.pod index 3dd3ba9..951a470 100644 --- a/pod/perllexwarn.pod +++ b/pod/perllexwarn.pod @@ -325,16 +325,16 @@ and C 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