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>
Robert P. J. Day committed
May 29, 2018 at 08:14 UTC
44f560fc16e07ccd05f19fce5f3bde74ef050c03
1 file changed
+1
-1
builtin/init-db.c
+1
-1
@@ -117,7 +117,7 @@ static void copy_templates(const char *template_dir)
117
118
dir = opendir(template_path.buf);
119
if (!dir) {
120
- warning(_("templates not found %s"), template_dir);
120
+ warning(_("templates not found in %s"), template_dir);
121
goto free_return;
122
}
123