From: Dave Rolsky <autarch@urth.org>
Date: Wed, 3 Sep 2008 15:04:27 +0000 (+0000)
Subject: add mention of BUILD in Intro
X-Git-Tag: 0.57~13
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=bc8641fc0c405cc1cf83778feeb843e09f5dbe1d;p=gitmo%2FMoose.git

add mention of BUILD in Intro
---

diff --git a/lib/Moose/Intro.pod b/lib/Moose/Intro.pod
index 3a4fbb5..df465de 100644
--- a/lib/Moose/Intro.pod
+++ b/lib/Moose/Intro.pod
@@ -300,6 +300,10 @@ With Moose, this C<new()> method is created for you, and it simply
 does the right thing. You should never need to define your own
 constructor!
 
+Sometimes you want to do something whenever an object is created. In
+those cases, you can provide a C<BUILD()> method in your class. Moose
+will call this for you after creating a new object.
+
 =head2 Destructor
 
 This is a special method called when an object instance goes out of