diff options
Diffstat (limited to 'ext/Opcode')
-rw-r--r-- | ext/Opcode/Opcode.pm | 4 | ||||
-rw-r--r-- | ext/Opcode/ops.pm | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/ext/Opcode/Opcode.pm b/ext/Opcode/Opcode.pm index 179da04557..9394734192 100644 --- a/ext/Opcode/Opcode.pm +++ b/ext/Opcode/Opcode.pm @@ -351,7 +351,7 @@ available memory). anonlist anonhash -Note that despite the existance of this optag a memory resource attack +Note that despite the existence of this optag a memory resource attack may still be possible using only :base_core ops. Disabling these ops is a I<very> heavy handed way to attempt to prevent @@ -555,7 +555,7 @@ SystemV Interprocess Communications: =item :dangerous This tag is simply a bucket for opcodes that are unlikely to be used via -a tag name but need to be tagged for completness and documentation. +a tag name but need to be tagged for completeness and documentation. syscall dump chroot diff --git a/ext/Opcode/ops.pm b/ext/Opcode/ops.pm index 8a7a200665..113445f29c 100644 --- a/ext/Opcode/ops.pm +++ b/ext/Opcode/ops.pm @@ -6,7 +6,7 @@ use Opcode qw(opmask_add opset invert_opset); sub import { shift; - # Not that unimport is the prefered form since import's don't + # Not that unimport is the preferred form since import's don't # accumulate well owing to the 'only ever add opmask' rule. # E.g., perl -Mops=:set1 -Mops=:setb is unlikely to do as expected. opmask_add(invert_opset opset(@_)) if @_; |