From: Jonathan Nieder Date: Mon, 20 Nov 2017 22:04:58 +0000 (-0800) Subject: connect: correct style of C-style comment X-Git-Tag: v2.16.0-rc0~68^2 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/233cd282ad71e667082bae45b3a73e947daa158b 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 Signed-off-by: Jonathan Nieder Signed-off-by: Junio C Hamano --- diff --git a/connect.c b/connect.c index d6033861b3..c3a014c5ba 100644 --- a/connect.c +++ b/connect.c @@ -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))