From: Dave Rolsky Date: Wed, 3 Sep 2008 03:24:45 +0000 (+0000) Subject: Fix a code goofup. Add a link to Moose::Unsweetened. X-Git-Tag: 0.57~18 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f330de33a4ca1eb86b2299e1c85fa9615654cf8d;p=gitmo%2FMoose.git Fix a code goofup. Add a link to Moose::Unsweetened. --- diff --git a/lib/Moose/Intro.pod b/lib/Moose/Intro.pod index 6105c6a..3a4fbb5 100644 --- a/lib/Moose/Intro.pod +++ b/lib/Moose/Intro.pod @@ -72,8 +72,8 @@ This is a I class definition! has 'password' => ( is => 'rw', - isa => Str ', - ); + isa => 'Str', + ); has 'last_login' => ( is => 'rw', @@ -525,6 +525,9 @@ After that, check out the Role recipes. If you're really curious, go on and read the Meta and Extending recipes, but those are mostly there for people who want to be Moose wizards and change how Moose works. +If you want to see how Moose would translate directly old school Perl +5 OO code, check out the L. + =head1 AUTHOR Dave Rolsky Eautarch@urth.orgE and Stevan Little