From: Florian Ragwitz Date: Tue, 23 Mar 2010 18:22:26 +0000 (+0100) Subject: Actually remove trailing whitespace. X-Git-Tag: 1.00~3 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b4538f65809f5aeae11cfdcf606a75f7d1275305;p=gitmo%2FMoose.git Actually remove trailing whitespace. --- diff --git a/lib/Moose/Manual/Construction.pod b/lib/Moose/Manual/Construction.pod index cbbc5d2..bc6f39f 100644 --- a/lib/Moose/Manual/Construction.pod +++ b/lib/Moose/Manual/Construction.pod @@ -102,11 +102,11 @@ useful if you need to venture beyond what the default initialization behavior and coercions can accomplish. sub BUILD { - my $self = shift; - my $params_hashref = shift; + my $self = shift; + my $params_hashref = shift; - $self->addFriend( My::User->new ($params_hashref->{friendId}, - $params_hashref->{activationCode}) ); + $self->addFriend( My::User->new($params_hashref->{friendId}, + $params_hashref->{activationCode}) ); }