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>
Jonathan Nieder committed
Nov 20, 2017 at 14:04 UTC
233cd282ad71e667082bae45b3a73e947daa158b
1 file changed
+2
-1
connect.c
+2
-1
@@ -889,7 +889,8 @@ static struct child_process *git_connect_git(int fd[2], char *hostandport,
889
890
transport_check_allowed("git");
891
892
- /* These underlying connection commands die() if they
892
+ /*
893
+ * These underlying connection commands die() if they
894
* cannot connect.
895
*/
896
if (git_use_proxy(hostandport))