diff options
author | David Golden <dagolden@cpan.org> | 2013-05-23 18:08:48 -0400 |
---|---|---|
committer | David Golden <dagolden@cpan.org> | 2013-05-23 20:11:25 -0400 |
commit | 3d6c5fec8cb3579a30be60177e31058bc31285d7 (patch) | |
tree | bd3a0ce863e817d79188b0a232d1dfd63ae3a1e0 /dist/Safe | |
parent | 1dcc3c19f1c031cf741527de0a2b2e4c178e9f04 (diff) | |
download | perl-3d6c5fec8cb3579a30be60177e31058bc31285d7.tar.gz |
fix various podcheck nits
Diffstat (limited to 'dist/Safe')
-rw-r--r-- | dist/Safe/Safe.pm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/dist/Safe/Safe.pm b/dist/Safe/Safe.pm index f00853e386..bee3718593 100644 --- a/dist/Safe/Safe.pm +++ b/dist/Safe/Safe.pm @@ -3,7 +3,7 @@ package Safe; use 5.003_11; use Scalar::Util qw(reftype refaddr); -$Safe::VERSION = "2.35"; +$Safe::VERSION = "2.36"; # *** Don't declare any lexicals above this point *** # @@ -590,9 +590,7 @@ Deny I<only> the listed operators from being used when compiling code in the compartment (I<all> other operators will be permitted, so you probably don't want to use this method). -=head2 trap (OP, ...) - -=head2 untrap (OP, ...) +=head2 trap (OP, ...), untrap (OP, ...) The trap and untrap methods are synonyms for deny and permit respectfully. |