reverse example tests (from jonathan_)
Jesse Luehrs [Sun, 13 Sep 2009 23:57:25 +0000 (18:57 -0500)]
lib/Moose/Manual/Roles.pod

index 3c36265..fdd1144 100644 (file)
@@ -75,9 +75,9 @@ method. The C<Car> class also C<does('Breakable')>:
 
   my $car = Car->new( engine => Engine->new );
 
-  print $car->is_broken ? 'Still working' : 'Busted';
+  print $car->is_broken ? 'Busted' : 'Still working';
   $car->break;
-  print $car->is_broken ? 'Still working' : 'Busted';
+  print $car->is_broken ? 'Busted' : 'Still working';
 
   $car->does('Breakable'); # true