From: Dave Rolsky Date: Thu, 17 Jun 2010 20:05:14 +0000 (-0500) Subject: Use bare attr for native delegation example X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=45218088b41b9a52194f6643be141470c2aa99f4;hp=6b24100035035acc3bb86df2c45a2463d09bf3cf;p=gitmo%2Fmoose-presentations.git Use bare attr for native delegation example --- diff --git a/moose-class/slides/index.html b/moose-class/slides/index.html index e1e3350..8e7aa65 100644 --- a/moose-class/slides/index.html +++ b/moose-class/slides/index.html @@ -3415,7 +3415,7 @@ has history => ( use Moose; has _favorite_numbers => ( traits => [ 'Array' ], - is => 'ro', + is => 'bare', isa => 'ArrayRef[Int]', default => sub { [] }, init_arg => undef,