typo fixes
Jesse Luehrs [Sat, 7 May 2011 06:56:16 +0000 (01:56 -0500)]
lib/Moose/Cookbook/Basics/Recipe4.pod

index d9d5dfd..3813982 100644 (file)
@@ -197,7 +197,7 @@ C<Company> in its C<employer> attribute.
 
 To do that, we need to hook into object construction. Moose lets us do
 this by writing a C<BUILD> method in our class. When your class
-defined a C<BUILD> method, it will be called immediately after an
+defines a C<BUILD> 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<after> modifier:
 
 Again, as with the C<BUILD> 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<Employee> objects..
+an array reference of C<Employee> objects.
 
 The B<Person> class does not really demonstrate anything new. It has several
 C<required> attributes. It also has a C<predicate> method, which we