init_meta documentation
[gitmo/Moose.git] / lib / Moose / Cookbook / Extending / Recipe3.pod
index 13bb2d0..544a86f 100644 (file)
@@ -37,7 +37,7 @@ Moose::Cookbook::Extending::Recipe3 - Providing an alternate base object class
 
   sub init_meta {
       shift;
-      Moose->init_meta( @_, base_class => 'MyApp::Base' );
+      return Moose->init_meta( @_, base_class => 'MyApp::Base' );
   }
 
 =head1 DESCRIPTION