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>2018-06-01 09:06:40 +0300
committerJunio C Hamano <gitster@pobox.com>2018-06-01 09:06:40 +0300
commitba928e974021570f96309a655981a7d10d82c430 (patch)
tree7c3aac4d44edb394efd1abdbde46e6cd1be2ae5c /builtin/init-db.c
parent95dd4b2b14db912b482320c0a69518e77e7af19a (diff)
parent44f560fc16e07ccd05f19fce5f3bde74ef050c03 (diff)
Merge branch 'rd/init-typo'
Message fix. * rd/init-typo: init: fix grammar in "templates not found" msg
Diffstat (limited to 'builtin/init-db.c')
-rw-r--r--builtin/init-db.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/init-db.c b/builtin/init-db.c
index 5a5844c153..4ecf909368 100644
--- a/builtin/init-db.c
+++ b/builtin/init-db.c
@@ -117,7 +117,7 @@ static void copy_templates(const char *template_dir)
dir = opendir(template_path.buf);
if (!dir) {
- warning(_("templates not found %s"), template_dir);
+ warning(_("templates not found in %s"), template_dir);
goto free_return;
}