From: Jesse Luehrs Date: Sat, 7 May 2011 06:56:16 +0000 (-0500) Subject: typo fixes X-Git-Tag: 2.0100~137 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=4c72fa4097b86d3c2f5ed618a5ecf59a1d13760c;p=gitmo%2FMoose.git typo fixes --- diff --git a/lib/Moose/Cookbook/Basics/Recipe4.pod b/lib/Moose/Cookbook/Basics/Recipe4.pod index d9d5dfd..3813982 100644 --- a/lib/Moose/Cookbook/Basics/Recipe4.pod +++ b/lib/Moose/Cookbook/Basics/Recipe4.pod @@ -197,7 +197,7 @@ C in its C attribute. To do that, we need to hook into object construction. Moose lets us do this by writing a C method in our class. When your class -defined a C method, it will be called immediately after an +defines a C method, it will be called immediately after object construction, but before the object is returned to the caller (3). @@ -232,7 +232,7 @@ To do this we can use an C modifier: Again, as with the C method, we know that the type constraint check has already happened, so we know that if C<$employees> is defined it will contain -an array reference of C objects.. +an array reference of C objects. The B class does not really demonstrate anything new. It has several C attributes. It also has a C method, which we