From efcb7f361beefbdb1c24ad86c75c2ed468f29c90 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Fri, 17 Aug 2018 14:07:48 +1000 Subject: [PATCH] CODING_STYLE: Fix non-uniform heading level 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 --- CODING_STYLE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CODING_STYLE.md b/CODING_STYLE.md index b4c77d0c8..4fef234ed 100644 --- a/CODING_STYLE.md +++ b/CODING_STYLE.md @@ -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.