note how BUILD works here, since it's the first time it's mentioned
Jesse Luehrs [Sat, 7 May 2011 06:56:25 +0000 (01:56 -0500)]
lib/Moose/Cookbook/Basics/Recipe4.pod

index 3813982..58a935b 100644 (file)
@@ -199,7 +199,9 @@ 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
 defines a C<BUILD> method, it will be called immediately after
 object construction, but before the object is returned to the caller
-(3).
+(3). Note that all C<BUILD> methods in your class hierarchy will be
+called automatically; there is no need to (and you should not) call
+the superclass C<BUILD> method.
 
 The C<Company> class uses the C<BUILD> method to ensure that each
 employee of a company has the proper C<Company> object in its