Perltidy this code a bit.
Dave Rolsky [Mon, 4 Aug 2008 04:05:41 +0000 (04:05 +0000)]
lib/Moose/Cookbook/Extending/Recipe2.pod

index 7f19367..e0ad543 100644 (file)
@@ -23,10 +23,11 @@ Moose::Cookbook::Extending::Recipe2 - Acting like Moose.pm and providing sugar M
 
     return if $caller eq 'main';
 
-    Moose::init_meta( $caller,
-                      undef, # object base class
-                      'MyApp::Meta::Class',
-                    );
+    Moose::init_meta(
+        $caller,
+        undef,    # object base class
+        'MyApp::Meta::Class',
+    );
 
     Moose->import( { into => $caller }, @_ );