From: Paul Jamieson Fenwick Date: Tue, 29 Jul 2008 07:34:07 +0000 (+0000) Subject: Removed "whitespace only" lines in POD, making podchecker more happy. X-Git-Tag: 0_55~30 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=986d175a4cf949554f598c7f3cdfc55a65c8f3c4;p=gitmo%2FMoose.git Removed "whitespace only" lines in POD, making podchecker more happy. --- diff --git a/lib/Moose.pm b/lib/Moose.pm index cba090a..3239899 100644 --- a/lib/Moose.pm +++ b/lib/Moose.pm @@ -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