summaryrefslogtreecommitdiff
path: root/pod
diff options
context:
space:
mode:
authorRicardo SIGNES <rjbs@cpan.org>2010-12-09 15:58:21 -0500
committerJesse Vincent <jesse@bestpractical.com>2010-12-09 15:58:21 -0500
commit1bb8a15505d40cd4fbf8e9e48185ff81c48dd167 (patch)
tree7645dafb45180280bc58209cec21e24f6da2f83d /pod
parent339a461de1bf5e3179a2e051585b18783f012a51 (diff)
downloadperl-1bb8a15505d40cd4fbf8e9e48185ff81c48dd167.tar.gz
Remove ; from use statements for readability. (Obeying the documentation
policy)
Diffstat (limited to 'pod')
-rw-r--r--pod/perlpolicy.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlpolicy.pod b/pod/perlpolicy.pod
index b29f79f5fc..13ee289f72 100644
--- a/pod/perlpolicy.pod
+++ b/pod/perlpolicy.pod
@@ -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.