add proof reading changes from dec
Chris Prather [Mon, 24 Aug 2009 00:46:22 +0000 (20:46 -0400)]
lib/Moose/Manual/Delegation.pod

index e0a5d09..ee41c10 100644 (file)
@@ -111,10 +111,10 @@ similar.
       }
   )
 
-By providing using C<Array> trait to the C<traits> parameter you signal to
+By providing the C<Array> trait to the C<traits> parameter you signal to
 Moose that you would like to use the set of Array helpers. Moose will then
-create an C<add_item> and a C<next_item> method that "just works". Behind the
-scenes C<add_item> is something like
+create an C<add_item> and a C<next_item> method that "just works". Behind
+the scenes C<add_item> is something like
 
   sub add_item { 
       my ($self, @items) = @_;
@@ -142,7 +142,7 @@ curry methods when creating delegates.
         }
     )
 
-With this definition calling C<$spider->set_user_agent('MyClient')> will
+With this definition, calling C<$spider->set_user_agent('MyClient')> will
 behind the scenes call C<$spider->request->header('UserAgent', 'MyClient')>.
 
 =head1 MISSING ATTRIBUTES