1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-25 22:56:10 +02:00

Fix overridable written with an extra 'e'

Signed-off-by: Nanako Shiraishi <nanako3@lavabit.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Nanako Shiraishi 2009-08-28 12:18:49 +09:00 committed by Junio C Hamano
parent 891182f914
commit 9319789804
2 changed files with 2 additions and 2 deletions

View File

@ -61,7 +61,7 @@ automatic consolidation of packs.
--prune=<date>::
Prune loose objects older than date (default is 2 weeks ago,
overrideable by the config variable `gc.pruneExpire`). This
overridable by the config variable `gc.pruneExpire`). This
option is on by default.
--no-prune::

View File

@ -376,7 +376,7 @@ sub gitweb_get_feature {
@{$feature{$name}{'default'}});
if (!$override) { return @defaults; }
if (!defined $sub) {
warn "feature $name is not overrideable";
warn "feature $name is not overridable";
return @defaults;
}
return $sub->(@defaults);