diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-09-10 17:02:57 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-09-10 17:02:57 +0900 |
commit | 8f3d48e14e7f15dd59592754416764db3060873d (patch) | |
tree | 5b99e1c1efe5fb46907127b930838cf49ec977e0 | |
parent | 036e1274a2e230462ce7b201de760bb12260a516 (diff) | |
parent | f81935cc4d16e6a346294ea2cd21e0751846b63a (diff) | |
download | git-8f3d48e14e7f15dd59592754416764db3060873d.tar.gz |
Merge branch 'jc/perl-git-comment-typofix' into maint
A comment fix.
* jc/perl-git-comment-typofix:
perl/Git.pm: typofix in a comment
-rw-r--r-- | perl/Git.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl/Git.pm b/perl/Git.pm index f4b56e6d4d..ffa09ace92 100644 --- a/perl/Git.pm +++ b/perl/Git.pm @@ -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 ]; |