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 коммит произвёл Junio C Hamano
Родитель 3fa5e0d07a
Коммит 233cd282ad
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

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