s/"/'/g
Dave Rolsky [Thu, 21 Oct 2010 13:34:25 +0000 (08:34 -0500)]
lib/MooseX/StrictConstructor/Role/Meta/Method/Constructor.pm

index 2ec5cf8..43b2aa2 100644 (file)
@@ -16,7 +16,7 @@ around '_generate_BUILDALL' => sub {
     $source .= ";\n" if $source;
 
     my @attrs = (
-        "__INSTANCE__ => 1,",
+        '__INSTANCE__ => 1,',
         map { B::perlstring($_) . ' => 1,' }
         grep {defined}
         map  { $_->init_arg() } @{ $self->_attributes() }