From: Jesse Luehrs Date: Mon, 18 Jan 2010 23:46:54 +0000 (-0600) Subject: use consistent formatting X-Git-Tag: 0.95~17 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=754a48339eff551b440309fdaac402a9deafee17;p=gitmo%2FMoose.git use consistent formatting --- diff --git a/lib/Moose/Meta/Attribute/Native.pm b/lib/Moose/Meta/Attribute/Native.pm index 38fbd4a..8441324 100644 --- a/lib/Moose/Meta/Attribute/Native.pm +++ b/lib/Moose/Meta/Attribute/Native.pm @@ -193,15 +193,15 @@ Common methods for hash references. Common methods for array references. has 'queue' => ( - traits => ['Array'], - is => 'ro', - isa => 'ArrayRef[Str]', - default => sub { [] }, - handles => { - add_item => 'push', - next_item => 'shift', - # ... - } + traits => ['Array'], + is => 'ro', + isa => 'ArrayRef[Str]', + default => sub { [] }, + handles => { + add_item => 'push', + next_item => 'shift', + # ... + } ); =item L @@ -209,14 +209,14 @@ Common methods for array references. Common methods for code references. has 'callback' => ( - traits => ['Code'], - is => 'ro', - isa => 'CodeRef', - default => sub { sub { 'called' } }, - handles => { - call => 'execute', - # ... - } + traits => ['Code'], + is => 'ro', + isa => 'CodeRef', + default => sub { sub { 'called' } }, + handles => { + call => 'execute', + # ... + } ); =back