diff options
author | Jonathan Nieder <jrnieder@gmail.com> | 2017-11-20 14:04:58 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-11-21 14:01:03 +0900 |
commit | 233cd282ad71e667082bae45b3a73e947daa158b (patch) | |
tree | a35db4c14a155feff403bd6cd164bc6435df3f1c /connect.c | |
parent | 3fa5e0d07a979dfd1a1095a9dda4904c62189e00 (diff) | |
download | git-233cd282ad71e667082bae45b3a73e947daa158b.tar.gz |
connect: correct style of C-style commentjn/ssh-wrappers
Documentation/CodingGuidelines explains:
- Multi-line comments include their delimiters on separate lines from
the text. E.g.
/*
* A very long
* multi-line comment.
*/
Reported-by: Brandon Williams <bmwill@google.com>
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'connect.c')
-rw-r--r-- | connect.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -889,7 +889,8 @@ static struct child_process *git_connect_git(int fd[2], char *hostandport, transport_check_allowed("git"); - /* These underlying connection commands die() if they + /* + * These underlying connection commands die() if they * cannot connect. */ if (git_use_proxy(hostandport)) |