diff options
author | Father Chrysostomos <sprout@cpan.org> | 2011-08-25 09:33:48 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-08-25 09:34:16 -0700 |
commit | ca2796bf44777d7e26368026ebbbcb28dbc4212a (patch) | |
tree | 9efbc11e2759d17d6f3918e5614fab93fbe7a0d6 | |
parent | 4f12661db5afd43f32ff0bb2d30a0eb3234f2fa3 (diff) | |
download | perl-ca2796bf44777d7e26368026ebbbcb28dbc4212a.tar.gz |
Attribute::Handlers: correct spelling
-rw-r--r-- | dist/Attribute-Handlers/lib/Attribute/Handlers.pm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/dist/Attribute-Handlers/lib/Attribute/Handlers.pm b/dist/Attribute-Handlers/lib/Attribute/Handlers.pm index 60b61ac1d3..06e8b490bb 100644 --- a/dist/Attribute-Handlers/lib/Attribute/Handlers.pm +++ b/dist/Attribute-Handlers/lib/Attribute/Handlers.pm @@ -4,7 +4,7 @@ use Carp; use warnings; use strict; use vars qw($VERSION $AUTOLOAD); -$VERSION = '0.92'; # remember to update version in POD! +$VERSION = '0.93'; # remember to update version in POD! # $DB::single=1; my %symcache; @@ -266,8 +266,8 @@ Attribute::Handlers - Simpler definition of attribute handlers =head1 VERSION -This document describes version 0.92 of Attribute::Handlers, -released August 20, 2011. +This document describes version 0.93 of Attribute::Handlers, +released July 20, 2011. =head1 SYNOPSIS @@ -437,7 +437,7 @@ then a reference to an array containing the string C<"turn it up to 11, man!"> would be passed as the last argument. Attribute::Handlers makes strenuous efforts to convert -the data argument (C<$_[4]>) to a useable form before passing it to +the data argument (C<$_[4]>) to a usable form before passing it to the handler (but see L<"Non-interpretive attribute handlers">). If those efforts succeed, the interpreted data is passed in an array reference; if they fail, the raw data is passed as a string. @@ -533,7 +533,7 @@ used for all types of referents like so: =head2 Non-interpretive attribute handlers Occasionally the strenuous efforts Attribute::Handlers makes to convert -the data argument (C<$_[4]>) to a useable form before passing it to +the data argument (C<$_[4]>) to a usable form before passing it to the handler get in the way. You can turn off that eagerness-to-help by declaring |