fixing bug
[gitmo/Moose.git] / lib / Moose / Cookbook / Recipe11.pod
index 697a0d2..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,
   );
 
@@ -88,8 +88,8 @@ string as an argument if you just want to exclude one method.
 
 Method exclusion and renaming can come in handy, especially when
 building roles out of other roles. In this example, all of our roles
-implement the C<Restartable> role, and provide the exact same API,
-with different implementations under the hood.
+implement the C<Restartable> role. Each role provides same API, but
+each has a different implementation under the hood.
 
 You can also use the method aliasing and excluding features when
 composing a role into a class.