Added rw => 1 to Intro
omega [Sun, 22 Jun 2008 19:00:13 +0000 (19:00 +0000)]
lib/Reaction/Manual/Intro.pod

index 7be7002..9ea0974 100644 (file)
@@ -73,7 +73,7 @@ One way to achive that is to do the following:
     use base 'DBIx::Class';
     use Moose;
     
-    has 'name' => (isa => 'Str', required => 1);
+    has 'name' => (isa => 'Str', required => 1, rw => 1);
     
     use namespace::clean -except => [ 'meta' ];