Removed "whitespace only" lines in POD, making podchecker more happy.
Paul Jamieson Fenwick [Tue, 29 Jul 2008 07:34:07 +0000 (07:34 +0000)]
lib/Moose.pm

index cba090a..3239899 100644 (file)
@@ -630,18 +630,18 @@ Here is another example, but within the context of a role:
 
   package Foo::Role;
   use Moose::Role;
-  
+
   has 'message' => (
       is      => 'rw',
       isa     => 'Str',
       default => 'Hello, I am a Foo'
   );
-  
+
   package My::Foo;
   use Moose;
-  
+
   with 'Foo::Role';
-  
+
   has '+message' => (default => 'Hello I am My::Foo');
 
 In this case, we are basically taking the attribute which the role supplied