diff options
author | Sebastian Schuberth <sschuberth@gmail.com> | 2013-09-24 12:24:46 +0200 |
---|---|---|
committer | Jonathan Nieder <jrnieder@gmail.com> | 2013-09-24 12:18:24 -0700 |
commit | debce6ac2a5e11eae61a524fd6bb414312bb07a8 (patch) | |
tree | c812114be7914213054c9124a6b7e6502043ba6e /builtin | |
parent | 128a96c98442524c7f2eeef4757b1e48445f24ce (diff) | |
download | git-debce6ac2a5e11eae61a524fd6bb414312bb07a8.tar.gz |
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>
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/clone.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |