Skip to content

Commit

Permalink
no unnecessary double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed May 8, 2013
1 parent 527002c commit 62494ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Mojo/Date.pm
Expand Up @@ -57,7 +57,7 @@ sub to_string {

# RFC 2616 (Sun, 06 Nov 1994 08:49:37 GMT)
my ($s, $m, $h, $mday, $month, $year, $wday) = gmtime($self->epoch // time);
return sprintf "%s, %02d %s %04d %02d:%02d:%02d GMT", $DAYS[$wday], $mday,
return sprintf '%s, %02d %s %04d %02d:%02d:%02d GMT', $DAYS[$wday], $mday,
$MONTHS[$month], $year + 1900, $h, $m, $s;
}

Expand Down

0 comments on commit 62494ad

Please sign in to comment.