lib/Moose.pm:
Shlomi Fish [Wed, 18 Jul 2007 16:09:28 +0000 (16:09 +0000)]
    - (Docs) referenced Moose::Util::TypeConstraints under 'isa' in 'has'
    for how to define a new type.

Changes
lib/Moose.pm

diff --git a/Changes b/Changes
index 1af6957..4ee00f0 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
 Revision history for Perl extension Moose
 
+    * Moose
+      - (Docs) referenced Moose::Util::TypeConstraints under 'isa' in 'has'
+      for how to define a new type.
+
 0.24 Tues. July 3, 2007
     ~ Some doc updates/cleanup ~
 
index bc62262..f312dbc 100644 (file)
@@ -394,7 +394,8 @@ The I<isa> option uses Moose's type constraint facilities to set up runtime
 type checking for this attribute. Moose will perform the checks during class 
 construction, and within any accessors. The C<$type_name> argument must be a 
 string. The string may be either a class name or a type defined using 
-Moose's type definition features.
+Moose's type definition features. (Refer to L<Moose::Util::TypeConstraints>
+for information on how to define a new type).
 
 =item I<coerce =E<gt> (1|0)>