diff options
author | Jonathan Nieder <jrnieder@gmail.com> | 2017-11-20 23:04:58 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-11-21 06:01:03 +0100 |
commit | 233cd282ad71e667082bae45b3a73e947daa158b (patch) | |
tree | a35db4c14a155feff403bd6cd164bc6435df3f1c /connect.c | |
parent | ssh: 'simple' variant does not support --port (diff) | |
download | git-233cd282ad71e667082bae45b3a73e947daa158b.tar.xz git-233cd282ad71e667082bae45b3a73e947daa158b.zip |
connect: correct style of C-style comment
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)) |