From: Jesse Luehrs <doy@tozt.net>
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<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