summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert P. J. Day <rpjday@crashcourse.ca>2018-05-29 12:14:35 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-05-30 04:32:40 (GMT)
commit44f560fc16e07ccd05f19fce5f3bde74ef050c03 (patch)
treeac89422e40c10ddb02e477050007e2e99634c101
parentfc54c1af3ec09bab8b8ea09768c2da4069b7f53e (diff)
downloadgit-44f560fc16e07ccd05f19fce5f3bde74ef050c03.zip
git-44f560fc16e07ccd05f19fce5f3bde74ef050c03.tar.gz
git-44f560fc16e07ccd05f19fce5f3bde74ef050c03.tar.bz2
init: fix grammar in "templates not found" msg
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-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 68ff4ad..244deef 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;
}