Remove ; from use statements for readability. (Obeying the documentation
authorRicardo SIGNES <rjbs@cpan.org>
Thu, 9 Dec 2010 20:58:21 +0000 (15:58 -0500)
committerJesse Vincent <jesse@bestpractical.com>
Thu, 9 Dec 2010 20:58:21 +0000 (15:58 -0500)
policy)

pod/perlpolicy.pod

index b29f79f..13ee289 100644 (file)
@@ -395,7 +395,7 @@ language feature works is with a small program the reader can
 run without modification.  More often, examples will consist
 of a snippet of code containing only the "important" bits.
 The definition of "important" varies from snippet to snippet.
-Sometimes it's important to declare C<use strict;> and C<use warnings;>,
+Sometimes it's important to declare C<use strict> and C<use warnings>,
 initialize all variables and fully catch every error condition.
 More often than not, though, those things obscure the lesson
 the example was intended to teach.