Fix a typoe - "Bool", not "Boo"
Dave Rolsky [Thu, 19 Jun 2008 14:16:27 +0000 (14:16 +0000)]
lib/Moose/Cookbook/Recipe11.pod

index 0db6c62..5f3734a 100644 (file)
@@ -12,7 +12,7 @@ Moose::Cookbook::Recipe11 - Advanced Role Composition - method exclusion and ali
 
   has 'is_paused' => (
       is      => 'rw',
-      isa     => 'Boo',
+      isa     => 'Bool',
       default => 0,
   );