Remove $next->($self, ...) in favor of $self->$next(...)
Dave Rolsky [Sun, 3 May 2009 18:11:06 +0000 (13:11 -0500)]
lib/Moose/Cookbook/FAQ.pod

index 3fd9e02..d274f5c 100644 (file)
@@ -216,7 +216,7 @@ of the main method. Here is an example:
         unless ($options->{bar} eq 'foo') {
             return 'bar';
         }
-        $next->($self, %options);
+        $self->$next(%options);
     };
 
 By choosing not to call the C<$next> method, you can stop the