summaryrefslogtreecommitdiff
path: root/pod/modpods/strict.pod
diff options
context:
space:
mode:
Diffstat (limited to 'pod/modpods/strict.pod')
-rw-r--r--pod/modpods/strict.pod8
1 files changed, 4 insertions, 4 deletions
diff --git a/pod/modpods/strict.pod b/pod/modpods/strict.pod
index e994ed2bc5..34a9c86934 100644
--- a/pod/modpods/strict.pod
+++ b/pod/modpods/strict.pod
@@ -16,9 +16,9 @@ strict - Perl pragma to restrict unsafe constructs
=head1 DESCRIPTION
If no import list is supplied, all possible restrictions are assumed.
-(This the safest mode to operate in, but is sometimes too strict for
-casual programming.) Currently, there are three possible things to be
-strict about: "subs", "vars", or "refs".
+(This is the safest mode to operate in, but is sometimes too strict for
+casual programming.) Currently, there are three possible things to be
+strict about: "subs", "vars", and "refs".
=over 6
@@ -53,7 +53,7 @@ name without fully qualifying it.
This disables the poetry optimization,
generating a compile-time error if you
-try to use a bareword identifiers that's not a subroutine.
+try to use a bareword identifier that's not a subroutine.
use strict 'subs';
$SIG{PIPE} = Plumber; # blows up