From: Sebastian Schuberth Date: Tue, 24 Sep 2013 10:24:46 +0000 (+0200) Subject: clone: add a period after "done" to end the sentence X-Git-Tag: v1.8.5-rc0~88 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=debce6ac2a5e11eae61a524fd6bb414312bb07a8;p=thirdparty%2Fgit.git clone: add a period after "done" to end the sentence We have a period in other places after "done" (see e.g. clone_local), so we should have one here, too. Signed-off-by: Sebastian Schuberth Signed-off-by: Jonathan Nieder --- diff --git a/builtin/clone.c b/builtin/clone.c index ca3eb68d72..0aff974a64 100644 --- a/builtin/clone.c +++ b/builtin/clone.c @@ -556,7 +556,7 @@ static void update_remote_refs(const struct ref *refs, 0, &rm, transport)) die(_("remote did not send all necessary objects")); if (0 <= option_verbosity) - printf(_("done\n")); + printf(_("done.\n")); } if (refs) {