Oops, accidentally edited some code
[gitmo/Moose.git] / lib / Moose / Meta / TypeConstraint / Role.pm
index cb5c7d7..53a51b2 100644 (file)
@@ -68,7 +68,7 @@ sub equals {
 sub is_a_type_of {
     my ($self, $type_or_name) = @_;
 
- $type = Moose::Util::TypeConstraints::find_type_constraint($type_or_name);
+    my $type = Moose::Util::TypeConstraints::find_type_constraint($type_or_name);
 
     ($self->equals($type) || $self->is_subtype_of($type_or_name));
 }