diff options
author | Michael Stevens <mstevens@etla.org> | 2001-03-15 20:01:12 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-03-16 02:53:32 +0000 |
commit | cea6626fc5e04af2c1d079dd4d3784eb2c21174b (patch) | |
tree | 90eadfaeaab2755554409cb8b6cc868e4054fcef /pod/perllexwarn.pod | |
parent | 8722d079bea855032e83d28746a234953bd00d85 (diff) | |
download | perl-cea6626fc5e04af2c1d079dd4d3784eb2c21174b.tar.gz |
the uncontroversial doc patches
Message-ID: <20010315200112.A7636@firedrake.org>
p4raw-id: //depot/perl@9175
Diffstat (limited to 'pod/perllexwarn.pod')
-rw-r--r-- | pod/perllexwarn.pod | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pod/perllexwarn.pod b/pod/perllexwarn.pod index b98e3332e4..951a470b2e 100644 --- a/pod/perllexwarn.pod +++ b/pod/perllexwarn.pod @@ -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 |