From: Jesse Luehrs Date: Sun, 13 Sep 2009 23:57:25 +0000 (-0500) Subject: reverse example tests (from jonathan_) X-Git-Tag: 0.90~21 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=d29608ef3eb00a623c8eeaf5349d946e0d5368bb;p=gitmo%2FMoose.git reverse example tests (from jonathan_) --- diff --git a/lib/Moose/Manual/Roles.pod b/lib/Moose/Manual/Roles.pod index 3c36265..fdd1144 100644 --- a/lib/Moose/Manual/Roles.pod +++ b/lib/Moose/Manual/Roles.pod @@ -75,9 +75,9 @@ method. The C class also C: 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