document coerce handling
Alex J. G. BurzyƄski [Sat, 21 May 2011 21:21:29 +0000 (23:21 +0200)]
Changes
lib/Moo.pm

diff --git a/Changes b/Changes
index 0342cf3..e65275e 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,6 +1,7 @@
 0.009008 - 2011-06-03
   - transfer fix to _load_module to Role::Tiny and make a note it's an inline
   - Bring back 5.8.1 compat
+  - add coerce handling
 
 0.009007 - 2011-02-25
   - I botched the copyright. re-disting.
index bce8ad2..09ad5c2 100644 (file)
@@ -263,10 +263,6 @@ L<Sub::Quote aware|/SUB QUOTE AWARE>
 
 =item * coerce
 
-This Moose feature is not yet supported
-
-=begin hide
-
 Takes a coderef which is meant to coerce the attribute.  The basic idea is to
 do something like the following:
 
@@ -274,9 +270,9 @@ do something like the following:
    $_[0] + 1 unless $_[0] % 2
  },
 
-L<Sub::Quote aware|/SUB QUOTE AWARE>
+Coerce does not require C<isa> to be defined.
 
-=end hide
+L<Sub::Quote aware|/SUB QUOTE AWARE>
 
 =item * trigger