diff options
author | Jesse Vincent <jesse@bestpractical.com> | 2009-10-05 23:42:38 -0400 |
---|---|---|
committer | Jesse Vincent <jesse@bestpractical.com> | 2009-10-05 23:57:58 -0400 |
commit | 345e23944176348809d2be92e05ba6856a5c0ebc (patch) | |
tree | 6c18f1f5b63994d65f86ab00bc8f7ced256432c4 /ext | |
parent | 69f6a9a1e215d426b05a8e22b39666a532bfffc3 (diff) | |
download | perl-345e23944176348809d2be92e05ba6856a5c0ebc.tar.gz |
A number of pod fixes found by podcheck.t
Diffstat (limited to 'ext')
-rw-r--r-- | ext/B/B/Concise.pm | 4 | ||||
-rw-r--r-- | ext/mro/mro.pm | 10 |
2 files changed, 9 insertions, 5 deletions
diff --git a/ext/B/B/Concise.pm b/ext/B/B/Concise.pm index 284f797612..e1bf2af840 100644 --- a/ext/B/B/Concise.pm +++ b/ext/B/B/Concise.pm @@ -1741,14 +1741,14 @@ This restores one of the standard line-styles: C<terse>, C<concise>, C<linenoise>, C<debug>, C<env>, into effect. It also accepts style names previously defined with add_style(). -=head2 add_style() +=head2 add_style () This subroutine accepts a new style name and three style arguments as above, and creates, registers, and selects the newly named style. It is an error to re-add a style; call set_style_standard() to switch between several styles. -=head2 add_callback() +=head2 add_callback () If your newly minted styles refer to any new #variables, you'll need to define a callback subroutine that will populate (or modify) those diff --git a/ext/mro/mro.pm b/ext/mro/mro.pm index 07a472168c..5acf0e5550 100644 --- a/ext/mro/mro.pm +++ b/ext/mro/mro.pm @@ -131,7 +131,7 @@ Note that C<UNIVERSAL> (and any members of C<UNIVERSAL>'s MRO) are not part of the MRO of a class, even though all classes implicitly inherit methods from C<UNIVERSAL> and its parents. -=head2 mro::set_mro($classname, $type) +=head2 mro::set_mro ($classname, $type) Sets the MRO of the given class to the C<$type> argument (either C<c3> or C<dfs>). @@ -328,9 +328,13 @@ works (like C<goto &maybe::next::method>); =back -=head2 The Pugs prototype Perl 6 Object Model uses C3 +=head2 Pugs -=head2 Parrot now uses C3 +The Pugs prototype Perl 6 Object Model uses C3 + +=head2 Parrot + +Parrot now uses C3 =over 4 |