Fix a code goofup. Add a link to Moose::Unsweetened.
Dave Rolsky [Wed, 3 Sep 2008 03:24:45 +0000 (03:24 +0000)]
lib/Moose/Intro.pod

index 6105c6a..3a4fbb5 100644 (file)
@@ -72,8 +72,8 @@ This is a I<complete and usable> 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<Moose::Unsweetened>.
+
 =head1 AUTHOR
 
 Dave Rolsky E<lt>autarch@urth.orgE<gt> and Stevan Little