Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2017-08-08 01:15:57 +0300
committerJunio C Hamano <gitster@pobox.com>2017-08-08 01:15:57 +0300
commitf81935cc4d16e6a346294ea2cd21e0751846b63a (patch)
tree3bd90c59e1a3eafa5e23c84fa2cba06115649864 /perl/Git.pm
parent840ed141983718e0c5518a325534a5656797132a (diff)
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/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 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 ];