From: Jesse Luehrs Date: Sat, 7 May 2011 06:56:25 +0000 (-0500) Subject: note how BUILD works here, since it's the first time it's mentioned X-Git-Tag: 2.0100~136 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=13a3e95670125d930ca939ae8ddf2353b4e1a3aa;p=gitmo%2FMoose.git note how BUILD works here, since it's the first time it's mentioned --- diff --git a/lib/Moose/Cookbook/Basics/Recipe4.pod b/lib/Moose/Cookbook/Basics/Recipe4.pod index 3813982..58a935b 100644 --- a/lib/Moose/Cookbook/Basics/Recipe4.pod +++ b/lib/Moose/Cookbook/Basics/Recipe4.pod @@ -199,7 +199,9 @@ 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 defines a C method, it will be called immediately after object construction, but before the object is returned to the caller -(3). +(3). Note that all C methods in your class hierarchy will be +called automatically; there is no need to (and you should not) call +the superclass C method. The C class uses the C method to ensure that each employee of a company has the proper C object in its