Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 38829dc9 authored by Harry Wei's avatar Harry Wei Committed by Linus Torvalds
Browse files

Documentation/CodingStyle: flesh out if-else examples



There is a missing case for "Chapter 3: Placing Braces and Spaces".  We
often know we should not use braces where a single statement.  The first
case is:

	if (condition)
		action();

Another case is:

	if (condition)
		do_this();
	else
		do_that();

However, I can not find a description of the second case.

Signed-off-by: default avatarHarry Wei <harryxiyou@gmail.com>
Cc: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 0bc825d2
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -168,6 +168,13 @@ Do not unnecessarily use braces where a single statement will do.
if (condition)
	action();

and

if (condition)
	do_this();
else
	do_that();

This does not apply if one branch of a conditional statement is a single
statement. Use braces in both branches.