Merge branch 'master' into method_generation_cleanup
[gitmo/Moose.git] / lib / Moose / Meta / TypeConstraint / Role.pm
index 09cd625..f226d8f 100644 (file)
@@ -7,7 +7,7 @@ use metaclass;
 use Scalar::Util 'blessed';
 use Moose::Util::TypeConstraints ();
 
-our $VERSION   = '0.60';
+our $VERSION   = '0.64';
 $VERSION = eval $VERSION;
 our $AUTHORITY = 'cpan:STEVAN';
 
@@ -97,7 +97,7 @@ sub is_subtype_of {
 
 sub create_child_type {
     my ($self, @args) = @_;
-    return Moose::meta::TypeConstraint->new(@args, parent => $self);
+    return Moose::Meta::TypeConstraint->new(@args, parent => $self);
 }
 
 1;