Actually remove trailing whitespace.
Florian Ragwitz [Tue, 23 Mar 2010 18:22:26 +0000 (19:22 +0100)]
lib/Moose/Manual/Construction.pod

index cbbc5d2..bc6f39f 100644 (file)
@@ -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}) );
   }