summaryrefslogtreecommitdiff
path: root/perl
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2017-08-07 22:15:57 (GMT)
committerJunio C Hamano <gitster@pobox.com>2017-08-07 22:15:57 (GMT)
commitf81935cc4d16e6a346294ea2cd21e0751846b63a (patch)
tree3bd90c59e1a3eafa5e23c84fa2cba06115649864 /perl
parent840ed141983718e0c5518a325534a5656797132a (diff)
downloadgit-f81935cc4d16e6a346294ea2cd21e0751846b63a.zip
git-f81935cc4d16e6a346294ea2cd21e0751846b63a.tar.gz
git-f81935cc4d16e6a346294ea2cd21e0751846b63a.tar.bz2
perl/Git.pm: typofix in a comment
No change of behaviour intended. Signed-off-by: Junio C Hamano <gitster@pobox.com>
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 864123f..dd72d63 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 ];