some version changes and such
Stevan Little [Tue, 22 Jan 2008 03:18:00 +0000 (03:18 +0000)]
README
lib/Moose.pm
lib/Moose/Meta/Method/Constructor.pm

diff --git a/README b/README
index 75b802e..ef6a9b7 100644 (file)
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-Moose version 0.34
+Moose version 0.35
 ===========================
 
 See the individual module documentation for more information
index 0b09568..4191d62 100644 (file)
@@ -4,7 +4,7 @@ package Moose;
 use strict;
 use warnings;
 
-our $VERSION   = '0.34';
+our $VERSION   = '0.35';
 our $AUTHORITY = 'cpan:STEVAN';
 
 use Scalar::Util 'blessed', 'reftype';
index c62f316..c06a651 100644 (file)
@@ -90,9 +90,8 @@ sub intialize_body {
         # We need to check if the attribute ->can('type_constraint')
         # since we may be trying to immutabilize a Moose meta class,
         # which in turn has attributes which are Class::MOP::Attribute
-        # objects, rather than
-        # Moose::Meta::Attribute. Class::MOP::Attribute attributes
-        # have no type constraints.
+        # objects, rather than Moose::Meta::Attribute. And 
+        # Class::MOP::Attribute attributes have no type constraints.
         my @type_constraints = map { $_->type_constraint } grep { $_->can('type_constraint') } @$attrs;
         my @type_constraint_bodies = map {
             $_ && $_->_compiled_type_constraint;