diff options
author | Junio C Hamano <gitster@pobox.com> | 2018-06-01 15:06:40 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-06-01 15:06:40 +0900 |
commit | ba928e974021570f96309a655981a7d10d82c430 (patch) | |
tree | 7c3aac4d44edb394efd1abdbde46e6cd1be2ae5c | |
parent | Merge branch 'js/rebase-recreate-merge' (diff) | |
parent | init: fix grammar in "templates not found" msg (diff) | |
download | tgif-ba928e974021570f96309a655981a7d10d82c430.tar.xz |
Merge branch 'rd/init-typo'
Message fix.
* rd/init-typo:
init: fix grammar in "templates not found" msg
-rw-r--r-- | builtin/init-db.c | 2 |
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; } |