summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2017-08-07 15:15:57 -0700
committerJunio C Hamano <gitster@pobox.com>2017-08-07 15:15:57 -0700
commitf81935cc4d16e6a346294ea2cd21e0751846b63a (patch)
tree3bd90c59e1a3eafa5e23c84fa2cba06115649864
parent840ed141983718e0c5518a325534a5656797132a (diff)
downloadgit-jc/perl-git-comment-typofix.tar.gz
perl/Git.pm: typofix in a commentjc/perl-git-comment-typofix
No change of behaviour intended. Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--perl/Git.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl/Git.pm b/perl/Git.pm
index 864123fe8e..dd72d63404 100644
--- a/perl/Git.pm
+++ b/perl/Git.pm
@@ -531,7 +531,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 ];