1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-18 11:16:08 +02:00

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>
This commit is contained in:
Jonathan Nieder 2017-11-20 14:04:58 -08:00 committed by Junio C Hamano
parent 3fa5e0d07a
commit 233cd282ad

View File

@ -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))