}
)
-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) = @_;
}
)
-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