summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Schuberth <sschuberth@gmail.com>2013-09-24 10:24:46 (GMT)
committerJonathan Nieder <jrnieder@gmail.com>2013-09-24 19:18:24 (GMT)
commitdebce6ac2a5e11eae61a524fd6bb414312bb07a8 (patch)
treec812114be7914213054c9124a6b7e6502043ba6e
parent128a96c98442524c7f2eeef4757b1e48445f24ce (diff)
downloadgit-debce6ac2a5e11eae61a524fd6bb414312bb07a8.zip
git-debce6ac2a5e11eae61a524fd6bb414312bb07a8.tar.gz
git-debce6ac2a5e11eae61a524fd6bb414312bb07a8.tar.bz2
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 <sschuberth@gmail.com> Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
-rw-r--r--builtin/clone.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/clone.c b/builtin/clone.c
index ca3eb68..0aff974 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) {