summaryrefslogtreecommitdiff
path: root/perl/Git.pm
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2015-03-05 13:12:53 -0800
committerJunio C Hamano <gitster@pobox.com>2015-03-05 13:12:53 -0800
commita628d505757412f2cf394c8fb11d7911f26cab3f (patch)
tree417ebed009f3437f43f5db954de841df461f21bc /perl/Git.pm
parent8fd37b3862f6a567db3830bf0b50def231a76c41 (diff)
parentef2956a5e2445470db93e392d640c664f3104ef8 (diff)
downloadgit-a628d505757412f2cf394c8fb11d7911f26cab3f.tar.gz
Merge branch 'ak/git-pm-typofix' into maint
Typofix in comments. * ak/git-pm-typofix: Git.pm: two minor typo fixes
Diffstat (limited to 'perl/Git.pm')
-rw-r--r--perl/Git.pm4
1 files changed, 2 insertions, 2 deletions
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 @@ Retrieve the integer configuration C<VARIABLE>. The return value
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<undef> if configuration variable is not defined,
+It would return C<undef> 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(@_);