fixed coercion warning
edenc [Fri, 10 Jul 2009 20:33:27 +0000 (20:33 +0000)]
lib/Reaction/Types/Core.pm

index 559e48f..166a3da 100644 (file)
@@ -52,7 +52,7 @@ subtype SingleDigit,
 #message will require moose 0.39
 class_type 'URI';
 #class_type 'URI', message { 'Must be an URI object'};
-coerce 'URI', from 'Str', via { URI->new($_) };
+coerce 'URI', from Str, via { URI->new($_) };
 
 1;