From: Dave Rolsky Date: Thu, 3 Feb 2011 21:10:52 +0000 (-0600) Subject: Use ro for first attribute shown X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=4baffce65ce415227378f0c0462c1aafc61f0690;p=gitmo%2Fmoose-presentations.git Use ro for first attribute shown --- diff --git a/moose-class/slides/index.html b/moose-class/slides/index.html index 678bd94..87a378b 100644 --- a/moose-class/slides/index.html +++ b/moose-class/slides/index.html @@ -155,7 +155,7 @@ img#me05 {top: 43px;left: 36px;}
package Person;
 use Moose;
 
-has first_name => ( is => 'rw' );
+has first_name => ( is => 'ro' );