summaryrefslogtreecommitdiff
path: root/perl
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2017-08-22 17:29:06 (GMT)
committerJunio C Hamano <gitster@pobox.com>2017-08-22 17:29:06 (GMT)
commit0e544bf6cdde69987f92c2ea59ef4016bda0f62d (patch)
tree6a87095eb86b68666ffca65a4d9ca2158308dd5f /perl
parent6e14df9e2f93409b6ff2ca4bd64d0d38e52670dc (diff)
parentf81935cc4d16e6a346294ea2cd21e0751846b63a (diff)
downloadgit-0e544bf6cdde69987f92c2ea59ef4016bda0f62d.zip
git-0e544bf6cdde69987f92c2ea59ef4016bda0f62d.tar.gz
git-0e544bf6cdde69987f92c2ea59ef4016bda0f62d.tar.bz2
Merge branch 'jc/perl-git-comment-typofix'
A comment fix. * jc/perl-git-comment-typofix: perl/Git.pm: typofix in a comment
Diffstat (limited to 'perl')
-rw-r--r--perl/Git.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl/Git.pm b/perl/Git.pm
index f4b56e6..ffa09ac 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 ];