Add a missing space.
Dave Rolsky [Sun, 14 Sep 2008 21:51:53 +0000 (21:51 +0000)]
lib/Moose/Util/TypeConstraints.pm

index ff621af..858a390 100644 (file)
@@ -245,7 +245,7 @@ sub find_or_parse_type_constraint ($) {
 
 sub normalize_type_constraint_name {
     my $type_constraint_name = shift @_;
-    $type_constraint_name =~s/\s//g;
+    $type_constraint_name =~ s/\s//g;
     return $type_constraint_name;
 }