From: Alexander Kuleshov Date: Wed, 18 Feb 2015 17:32:20 +0000 (+0600) Subject: Git.pm: two minor typo fixes X-Git-Tag: v2.3.2~27^2 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/ef2956a5e2445470db93e392d640c664f3104ef8?ds=inline;hp=-c Git.pm: two minor typo fixes Signed-off-by: Alexander Kuleshov Signed-off-by: Junio C Hamano --- ef2956a5e2445470db93e392d640c664f3104ef8 diff --git a/perl/Git.pm b/perl/Git.pm index b5905ee1ad..9026a7bb98 100644 --- a/perl/Git.pm +++ b/perl/Git.pm @@ -695,7 +695,7 @@ sub config_path { is simple decimal number. An optional value suffix of 'k', 'm', or 'g' in the config file will cause the value to be multiplied by 1024, 1048576 (1024^2), or 1073741824 (1024^3) prior to output. -It would return C if configuration variable is not defined, +It would return C if configuration variable is not defined. =cut @@ -704,7 +704,7 @@ sub config_int { } # Common subroutine to implement bulk of what the config* family of methods -# do. This curently wraps command('config') so it is not so fast. +# do. This currently wraps command('config') so it is not so fast. sub _config_common { my ($opts) = shift @_; my ($self, $var) = _maybe_self(@_);