X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMoose%2FMeta%2FMethod%2FDelegation.pm;h=ae62fc17f62112c4251eab9106c2584da2bb5a14;hb=e6fb6ad20fc8a4e61beafe5ab77d22da2eadd151;hp=9891518d9c1f74d15cc8e26e3628960ddcae2a86;hpb=5120f8fff0b21f586b443f88aedc394a2e47be53;p=gitmo%2FMoose.git diff --git a/lib/Moose/Meta/Method/Delegation.pm b/lib/Moose/Meta/Method/Delegation.pm index 9891518..ae62fc1 100644 --- a/lib/Moose/Meta/Method/Delegation.pm +++ b/lib/Moose/Meta/Method/Delegation.pm @@ -7,7 +7,7 @@ use warnings; use Carp 'confess'; use Scalar::Util 'blessed', 'weaken'; -our $VERSION = '0.68'; +our $VERSION = '0.72'; $VERSION = eval $VERSION; our $AUTHORITY = 'cpan:STEVAN'; @@ -121,17 +121,16 @@ methods. =over 4 -=item B +=item B<< Moose::Meta::Method::Delegation->new(%options) >> -This creates the method based on the criteria in C<%options>, -these options are: +This creates the delegation methods based on the provided C<%options>. =over 4 =item I This must be an instance of C which this -accessor is being generated for. This parameter is B. +accessor is being generated for. This options is B. =item I @@ -140,13 +139,14 @@ delegate. This can be either a method name or a code reference. =back -=item B +=item B<< $metamethod->associated_attribute >> Returns the attribute associated with this method. -=item B +=item B<< $metamethod->delegate_to_method >> -Returns the method to which this method delegates. +Returns the method to which this method delegates, as passed to the +constructor. =back