diff options
author | H.Merijn Brand <h.m.brand@xs4all.nl> | 2010-06-07 12:19:32 +0200 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2010-06-07 12:19:32 +0200 |
commit | 98ccfbbf7f3673c554b54933d94b68014231a32e (patch) | |
tree | 4d1aca1571313a0258aa11bc45a569e2bbdca8a6 /ext | |
parent | fb78fdcd12d30a6a41c12c697ef31593f4bc5d94 (diff) | |
download | perl-98ccfbbf7f3673c554b54933d94b68014231a32e.tar.gz |
Spell-check fixes in ext
Diffstat (limited to 'ext')
-rw-r--r-- | ext/B/t/OptreeCheck.pm | 4 | ||||
-rw-r--r-- | ext/VMS-DCLsym/DCLsym.pm | 2 | ||||
-rw-r--r-- | ext/mro/mro.pm | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/ext/B/t/OptreeCheck.pm b/ext/B/t/OptreeCheck.pm index 9de97e55d3..5be6da8467 100644 --- a/ext/B/t/OptreeCheck.pm +++ b/ext/B/t/OptreeCheck.pm @@ -329,7 +329,7 @@ our %gOpts = # values are replaced at runtime !! report => [qw/ diag fail print /], errcont => [1, 'if 1, tests match even if report is fail', 0], - # fixup for VMS, cygwin, which dont have stderr b4 stdout + # fixup for VMS, cygwin, which don't have stderr b4 stdout rxnoorder => [1, 'if 1, dont req match on -e lines, and -banner',0], strip => [1, 'if 1, catch errs and remove from renderings',0], stripv => 'if strip&&1, be verbose about it', @@ -631,7 +631,7 @@ an ex-op. =head2 match criteria The selected golden-sample is massaged to eliminate various match -irrelevancies. This is done so that the tests dont fail just because +irrelevancies. This is done so that the tests don't fail just because you added a line to the top of the test file. (Recall that the renderings contain the program's line numbers). Similar cleanups are done on "strings", hex-constants, etc. diff --git a/ext/VMS-DCLsym/DCLsym.pm b/ext/VMS-DCLsym/DCLsym.pm index 1bc72b8b4f..1cf3b04b8e 100644 --- a/ext/VMS-DCLsym/DCLsym.pm +++ b/ext/VMS-DCLsym/DCLsym.pm @@ -245,7 +245,7 @@ recorded, but in the rare event that someone changes the process' symbol table from outside (as is possible using some software from the net), the iterator will be out of sync with the symbol table. If you expect this to happen, you can reset the cache by calling this method. In addition, if you pass a FALSE -value as the first argument, caching will be disabled. It can be reenabled +value as the first argument, caching will be disabled. It can be re-enabled later by calling C<clearcache> again with a TRUE value as the first argument. It returns TRUE or FALSE to indicate whether caching was previously enabled or disabled, respectively. diff --git a/ext/mro/mro.pm b/ext/mro/mro.pm index 9acbf21d80..f580bdadf3 100644 --- a/ext/mro/mro.pm +++ b/ext/mro/mro.pm @@ -94,7 +94,7 @@ as well. =head2 How does C3 work -C3 works by always preserving local precendence ordering. This essentially +C3 works by always preserving local precedence ordering. This essentially means that no class will appear before any of its subclasses. Take, for instance, the classic diamond inheritance pattern: |