From: Dave Rolsky Date: Sat, 31 Jan 2009 21:16:15 +0000 (+0000) Subject: pod fixlet X-Git-Tag: 0.66~24 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=ce5e6e3cee4c37c44e1ccb88059b66ca02ff0525;p=gitmo%2FMoose.git pod fixlet --- diff --git a/lib/Moose/Manual/MethodModifiers.pod b/lib/Moose/Manual/MethodModifiers.pod index c60837c..875c6db 100644 --- a/lib/Moose/Manual/MethodModifiers.pod +++ b/lib/Moose/Manual/MethodModifiers.pod @@ -212,10 +212,10 @@ Now our report has some content: What makes this combination of C and C special is -that it allows us to have methods which are called from ISUPER::method >> to call the parent. +that it allows us to have methods which are called from parent (least +specific) to child (most specific). This inverts the normal order, +where the child's method is called first, and it in turn will call C<< +$self->SUPER::method >> to call the parent. Note that in C we call C again. If the object is an instance of C then this