diff options
author | Larry Wall <lwall@netlabs.com> | 1995-03-12 22:32:14 -0800 |
---|---|---|
committer | Larry Wall <lwall@netlabs.com> | 1995-03-12 22:32:14 -0800 |
commit | 748a93069b3d16374a9859d1456065dd3ae11394 (patch) | |
tree | 308ca14de9933a313dceacce8be77db67d9368c7 /pod/modpods/strict.pod | |
parent | fec02dd38faf8f83471b031857d89cb76fea1ca0 (diff) | |
download | perl-748a93069b3d16374a9859d1456065dd3ae11394.tar.gz |
Perl 5.001perl-5.001
[See the Changes file for a list of changes]
Diffstat (limited to 'pod/modpods/strict.pod')
-rw-r--r-- | pod/modpods/strict.pod | 8 |
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 |