From: Dave Rolsky Date: Mon, 7 Sep 2009 15:58:06 +0000 (-0500) Subject: Run new code through perltidy X-Git-Tag: 0.89_02~33^2~2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=dae259f85070f3600e31ef96b922be795f362d87;p=gitmo%2FMoose.git Run new code through perltidy --- diff --git a/lib/Moose/Cookbook/Extending/Recipe1.pod b/lib/Moose/Cookbook/Extending/Recipe1.pod index c81b1a8..15d605e 100644 --- a/lib/Moose/Cookbook/Extending/Recipe1.pod +++ b/lib/Moose/Cookbook/Extending/Recipe1.pod @@ -225,14 +225,14 @@ directly; see the L docs. use MooseX::Embiggen::Role::Meta::Method::Constructor; use MooseX::Embiggen::Role::Object; - my ($import, $unimport, $init_meta) = Moose::Exporter->build_import_methods( - also => ['Moose'] - metaclass_roles => ['MooseX::Embiggen::Role::Meta::Class'], + my ( $import, $unimport, $init_meta ) = Moose::Exporter->build_import_methods( + also => ['Moose'] metaclass_roles => + ['MooseX::Embiggen::Role::Meta::Class'], attribute_metaclass_roles => ['MooseX::Embiggen::Role::Meta::Attribute'], - constructor_class_roles => + constructor_class_roles => ['MooseX::Embiggen::Role::Meta::Method::Constructor'], - base_class_roles => ['MooseX::Embiggen::Role::Object'], - install => [qw(import unimport)], + base_class_roles => ['MooseX::Embiggen::Role::Object'], + install => [qw(import unimport)], ); sub init_meta {