Fix FAQ on require+attributes
Mark A. Stratman [Fri, 11 Mar 2011 19:38:09 +0000 (13:38 -0600)]
lib/Moose/Manual/FAQ.pod

index 9ca7ff3..3371977 100644 (file)
@@ -375,8 +375,8 @@ an example:
 
   package Car;
   use Moose;
-  with 'Breakable';
   has 'stress' => ( is  => 'rw', isa => 'Int' );
+  with 'Breakable';
 
 If you mistakenly consume the C<Breakable> role before declaring your
 C<stress> attribute, you would see an error like this: