]> git.ipfire.org Git - thirdparty/lxc.git/commitdiff
CODING_STYLE: Fix non-uniform heading level
authorTobin C. Harding <me@tobin.cc>
Fri, 17 Aug 2018 04:07:48 +0000 (14:07 +1000)
committerChristian Brauner <christian.brauner@ubuntu.com>
Mon, 10 Dec 2018 15:20:54 +0000 (16:20 +0100)
Heading uses only 3 level header (###) but the rest of the file uses
four (####).  We should be uniform.

Use uniform heading level in line with the rest of the file.

Signed-off-by: Tobin C. Harding <me@tobin.cc>
CODING_STYLE.md

index b4c77d0c8a5dd2201ba986d48479275a5f5d76cd..4fef234ed4bddf38b8d2dcb30eaddd4fb9f23b8a 100644 (file)
@@ -382,7 +382,7 @@ rules to use them:
   }
   ```
 
-### Cast to `(void)` When Intentionally Ignoring Return Values
+#### Cast to `(void)` When Intentionally Ignoring Return Values
 
 - There are cases where you do not care about the return value of a function.
   Please cast the return value to `(void)` when doing so.