]> git.ipfire.org Git - thirdparty/git.git/commitdiff
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)
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

index b63a8f9a44861442b9a5f99f72ae1a0eeac65302..3daa1f82bb9ac78b674c0efb82ad1dc4ed609a38 100644 (file)
@@ -244,7 +244,7 @@ For C programs:
    . since around 2007 with 2b6854c863a, we have been using
      initializer elements which are not computable at load time. E.g.:
 
-       const char *args[] = {"constant", variable, NULL};
+       const char *args[] = { "constant", variable, NULL };
 
    . since early 2012 with e1327023ea, we have been using an enum
      definition whose last element is followed by a comma.  This, like