aboutsummaryrefslogtreecommitdiffstats
path: root/perl/Git.pm
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2017-08-22 10:29:06 -0700
committerJunio C Hamano <gitster@pobox.com>2017-08-22 10:29:06 -0700
commit0e544bf6cdde69987f92c2ea59ef4016bda0f62d (patch)
tree6a87095eb86b68666ffca65a4d9ca2158308dd5f /perl/Git.pm
parentMerge branch 'rs/in-obsd-basename-dirname-take-const' (diff)
parentperl/Git.pm: typofix in a comment (diff)
downloadgit-0e544bf6cdde69987f92c2ea59ef4016bda0f62d.tar.gz
git-0e544bf6cdde69987f92c2ea59ef4016bda0f62d.zip
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/Git.pm')
-rw-r--r--perl/Git.pm2
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 ];