From: Jesse Luehrs Date: Sat, 7 May 2011 18:09:26 +0000 (-0500) Subject: fix recipe synopsis X-Git-Tag: 2.0003~10 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=625e5ae16b07f5863479c9ddaa764ed987c5ccd4;p=gitmo%2FMoose.git fix recipe synopsis --- diff --git a/lib/Moose/Cookbook/Basics/Recipe4.pod b/lib/Moose/Cookbook/Basics/Recipe4.pod index 1be2fab..94a9982 100644 --- a/lib/Moose/Cookbook/Basics/Recipe4.pod +++ b/lib/Moose/Cookbook/Basics/Recipe4.pod @@ -52,7 +52,7 @@ use Test::Requires { has 'address' => ( is => 'rw', isa => 'Address' ); has 'employees' => ( is => 'rw', - isa => 'ArrayRef[Employee]' + isa => 'ArrayRef[Employee]', default => sub { [] }, );