diff options
author | David Steinbrunner <dsteinbrunner@pobox.com> | 2013-05-21 07:05:15 -0400 |
---|---|---|
committer | James E Keenan <jkeenan@cpan.org> | 2013-05-25 04:56:56 +0200 |
commit | b84c7839f2ebbf8f6a5093a22eaab00479899711 (patch) | |
tree | 3b11bc584567cf3dd1fba877337ea1f53b6c6bbd /ext | |
parent | 7e3426eab08c236f7768b95d4ae8a536009bd0fa (diff) | |
download | perl-b84c7839f2ebbf8f6a5093a22eaab00479899711.tar.gz |
Typo fixes for B modules.
Uses of 'optimise' change to 'optimize' to be consistent with
other uses of 'optimize'.
Bump $VERSION.
Diffstat (limited to 'ext')
-rw-r--r-- | ext/B/B.pm | 4 | ||||
-rw-r--r-- | ext/B/B/Concise.pm | 4 | ||||
-rw-r--r-- | ext/B/B/Showlex.pm | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/ext/B/B.pm b/ext/B/B.pm index 8856a32aa9..338a0fe374 100644 --- a/ext/B/B.pm +++ b/ext/B/B.pm @@ -15,7 +15,7 @@ require Exporter; # walkoptree comes from B.xs BEGIN { - $B::VERSION = '1.42'; + $B::VERSION = '1.43'; @B::EXPORT_OK = (); # Our BOOT code needs $VERSION set, and will append to @EXPORT_OK. @@ -1063,7 +1063,7 @@ underlying C "inheritance": / \ B::LOOP B::PMOP -Access methods correspond to the underlying C structre field names, +Access methods correspond to the underlying C structure field names, with the leading "class indication" prefix (C<"op_">) removed. =head2 B::OP Methods diff --git a/ext/B/B/Concise.pm b/ext/B/B/Concise.pm index 67876a1c8c..72ac3f9ddd 100644 --- a/ext/B/B/Concise.pm +++ b/ext/B/B/Concise.pm @@ -14,7 +14,7 @@ use warnings; # uses #3 and #4, since warnings uses Carp use Exporter (); # use #5 -our $VERSION = "0.95"; +our $VERSION = "0.96"; our @ISA = qw(Exporter); our @EXPORT_OK = qw( set_style set_style_standard add_callback concise_subref concise_cv concise_main @@ -1636,7 +1636,7 @@ your program is). =item B<#opt> -Whether or not the op has been optimised by the peephole optimiser. +Whether or not the op has been optimized by the peephole optimizer. Only available in 5.9 and later. diff --git a/ext/B/B/Showlex.pm b/ext/B/B/Showlex.pm index 2de8aa49b2..ab68451610 100644 --- a/ext/B/B/Showlex.pm +++ b/ext/B/B/Showlex.pm @@ -1,6 +1,6 @@ package B::Showlex; -our $VERSION = '1.03'; +our $VERSION = '1.04'; use strict; use B qw(svref_2object comppadlist class); @@ -196,7 +196,7 @@ example. See L<B::Concise> for a fuller explanation of reasons. Some of the reported info, such as hex addresses, is not particularly valuable. Other information would be more useful for the typical programmer, such as line-numbers, pad-slot reuses, etc.. Given this, --newlex isnt a particularly good flag-name. +-newlex is not a particularly good flag-name. =head1 AUTHOR |