Oops, accidentally edited some code
Dave Rolsky [Thu, 26 Mar 2009 17:55:35 +0000 (12:55 -0500)]
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));
 }