Merge branch 'jc/perl-git-comment-typofix' into maint

A comment fix.

* jc/perl-git-comment-typofix:
  perl/Git.pm: typofix in a comment
This commit is contained in:
Junio C Hamano 2017-09-10 17:02:57 +09:00
Родитель 036e1274a2 f81935cc4d
Коммит 8f3d48e14e
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -532,7 +532,7 @@ If TIME is not supplied, the current local time is used.
=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 ];