From 44f560fc16e07ccd05f19fce5f3bde74ef050c03 Mon Sep 17 00:00:00 2001 From: "Robert P. J. Day" Date: Tue, 29 May 2018 08:14:35 -0400 Subject: [PATCH] init: fix grammar in "templates not found" msg Signed-off-by: Robert P. J. Day Signed-off-by: Junio C Hamano --- builtin/init-db.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/init-db.c b/builtin/init-db.c index 68ff4ad75a..244deeff09 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; } -- 2.11.4.GIT