add_attribute() POD correction from flatwhatson <whatson@gmail.com>.
Jay Hannah [Tue, 23 Mar 2010 02:57:24 +0000 (21:57 -0500)]
lib/Moose/Manual/MOP.pod

index 03f002b..df21c60 100644 (file)
@@ -112,11 +112,7 @@ As an example, we can add a method to a class:
 
 Or an attribute:
 
-  $meta->add_attribute(
-      name => 'size',
-      is   => 'rw',
-      isa  => 'Int',
-  );
+  $meta->add_attribute( 'size' => { is => 'rw', isa  => 'Int' } );
 
 Obviously, this is much more cumbersome than using Perl syntax or
 Moose sugar for defining methods and attributes, but this API allows