Skip to content

Commit

Permalink
consistent quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Feb 5, 2017
1 parent fe96caf commit f331bc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Mojo/Asset/File.pm
Expand Up @@ -116,7 +116,7 @@ sub slurp {
$handle->sysseek(0, SEEK_SET);
my $ret = my $content = '';
while ($ret = $handle->sysread(my $buffer, 131072, 0)) { $content .= $buffer }
return defined $ret ? $content : croak qq{Can't read from asset: $!};
return defined $ret ? $content : croak "Can't read from asset: $!";
}

1;
Expand Down

0 comments on commit f331bc0

Please sign in to comment.