diff options
author | Frederic Briere <fbriere@fbriere.net> | 2011-08-25 09:35:26 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-08-25 09:35:26 -0700 |
commit | 78973a2c8c4a2e009d02b13655fa9531e16234db (patch) | |
tree | dd18985b5568a8e75d2d012ce381c1b89bb730a6 | |
parent | ca2796bf44777d7e26368026ebbbcb28dbc4212a (diff) | |
download | perl-78973a2c8c4a2e009d02b13655fa9531e16234db.tar.gz |
Attribute::Handlers: "my" should be "till"
-rw-r--r-- | dist/Attribute-Handlers/lib/Attribute/Handlers.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dist/Attribute-Handlers/lib/Attribute/Handlers.pm b/dist/Attribute-Handlers/lib/Attribute/Handlers.pm index 06e8b490bb..36f6e2e81c 100644 --- a/dist/Attribute-Handlers/lib/Attribute/Handlers.pm +++ b/dist/Attribute-Handlers/lib/Attribute/Handlers.pm @@ -445,7 +445,7 @@ For example, all of these: sub foo :Loud(till=>ears=>are=>bleeding) {...} sub foo :Loud(qw/till ears are bleeding/) {...} - sub foo :Loud(qw/my, ears, are, bleeding/) {...} + sub foo :Loud(qw/till, ears, are, bleeding/) {...} sub foo :Loud(till,ears,are,bleeding) {...} causes it to pass C<['till','ears','are','bleeding']> as the handler's |