perl/Git.pm: typofix in a comment

No change of behaviour intended.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Junio C Hamano 2017-08-07 15:15:57 -07:00
parent 840ed14198
commit f81935cc4d

View file

@ -531,7 +531,7 @@ sub version {
=cut
sub get_tz_offset {
# some systmes don't handle or mishandle %z, so be creative.
# some systems don't handle or mishandle %z, so be creative.
my $t = shift || time;
my $gm = timegm(localtime($t));
my $sign = qw( + + - )[ $gm <=> $t ];