kill passive voice in the trigger documentation
Chris Prather [Tue, 23 Feb 2010 23:53:55 +0000 (18:53 -0500)]
I was having difficulty understanding the parameters passed in to a trigger sub based on the documentation. I can only imagine that others were as well. I've re-written it to help make it hopefully clearer by reducing the usage of passive voice.

lib/Moose.pm

index 565593e..76988d8 100644 (file)
@@ -482,9 +482,9 @@ either C<ArrayRef> or C<HashRef>.
 =item I<trigger =E<gt> $code>
 
 The I<trigger> option is a CODE reference which will be called after
-the value of the attribute is set. The CODE ref will be passed the
-instance itself and the updated value. If the attribute already had a
-value, this will be passed as the third value to the trigger.
+the value of the attribute is set. The CODE ref is passed the
+instance itself, the updated value, and the original value if the 
+attribute was already set.
 
 You B<can> have a trigger on a read-only attribute.