]> git.ipfire.org Git - thirdparty/git.git/commit
Documentation: consistently use spaces inside initializers
authorPatrick Steinhardt <ps@pks.im>
Tue, 30 Jul 2024 07:24:52 +0000 (09:24 +0200)
committerJunio C Hamano <gitster@pobox.com>
Tue, 30 Jul 2024 20:50:25 +0000 (13:50 -0700)
commit6cda5972837360bf6a55884f3db45902afb0590d
tree4bb725603ba065b978377cfb973ff15c0eaf9a77
parent10f0723c8df41c9c2a4dec7e3571e98ec57138f1
Documentation: consistently use spaces inside initializers

Our coding guide is inconsistent with how it uses spaces inside of
initializers (`struct foo bar = { something }`). While we mostly carry
the space between open and closing braces and the initialized members,
in one case we don't.

Fix this one instance such that we consistently carry the space. This is
also consistent with how clang-format formats such initializers.

Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/CodingGuidelines