From: Shawn M Moore Date: Sun, 28 Sep 2008 17:25:14 +0000 (+0000) Subject: Small doc tweaks X-Git-Tag: 0.19~187 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=6beb7db6adf43757d8881da1c901532fbb382a48;p=gitmo%2FMouse.git Small doc tweaks --- diff --git a/lib/Mouse.pm b/lib/Mouse.pm index 3e657d4..acac3f1 100644 --- a/lib/Mouse.pm +++ b/lib/Mouse.pm @@ -258,16 +258,22 @@ Sets this class' superclasses. Installs a "before" method modifier. See L or L. +Use of this feature requires L! + =head2 after (method|methods) => Code Installs an "after" method modifier. See L or L. +Use of this feature requires L! + =head2 around (method|methods) => Code Installs an "around" method modifier. See L or L. +Use of this feature requires L! + =head2 has (name|names) => parameters Adds an attribute (or if passed an arrayref of names, multiple attributes) to @@ -332,11 +338,13 @@ L, such as regular expression and coderef, are not yet supported. Lets you automatically weaken any reference stored in the attribute. +Use of this feature requires L! + =item trigger => CodeRef Any time the attribute's value is set (either through the accessor or the constructor), the trigger is called on it. The trigger receives as arguments the instance, the new value, and the attribute instance. -Mouse 0.05 supported more complex triggers, but this behavior is now deprecated. +Mouse 0.05 supported more complex triggers, but this behavior is now removed. =item builder => Str