OSDN Git Service

perl/Git.pm: typofix in a comment
authorJunio C Hamano <gitster@pobox.com>
Mon, 7 Aug 2017 22:15:57 +0000 (15:15 -0700)
committerJunio C Hamano <gitster@pobox.com>
Mon, 7 Aug 2017 22:15:57 +0000 (15:15 -0700)
No change of behaviour intended.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
perl/Git.pm

index 864123f..dd72d63 100644 (file)
@@ -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 ];