X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=blobdiff_plain;f=lib%2FMouse%2FObject.pm;h=f1cd27e4237231236fbc17d5b385d9a301d24265;hp=f68f390aae8b565308cc21746214e7a0cf1ed810;hb=31c5194bc6a176cec4de515163d27f174eba5c9b;hpb=319200322d3631cdd936d6e36aa081d1caa2e7e1 diff --git a/lib/Mouse/Object.pm b/lib/Mouse/Object.pm index f68f390..f1cd27e 100644 --- a/lib/Mouse/Object.pm +++ b/lib/Mouse/Object.pm @@ -81,21 +81,21 @@ Mouse::Object - we don't need to steenkin' constructor =head1 METHODS -=head2 C<< new arguments -> Object >> +=head2 C<< new (Arguments) -> Object >> Instantiates a new C. This is obviously intended for subclasses. -=head2 C<< BUILDARGS(@args) -> HashRef >> +=head2 C<< BUILDARGS (Arguments) -> HashRef >> Lets you override the arguments that C takes. Return a hashref of parameters. -=head2 C<< BUILDALL \%args >> +=head2 C<< BUILDALL (\%args) >> Calls C on each class in the class hierarchy. This is called at the end of C. -=head2 C<< BUILD \%args >> +=head2 C<< BUILD (\%args) >> You may put any business logic initialization in BUILD methods. You don't need to redispatch or return any specific value.