From: Konrad Rzeszutek Wilk Date: Fri, 1 Apr 2016 15:13:57 +0000 (-0400) Subject: libxl/CODING_STYLE: Clarify the singular statement in a conditional statement explana... X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~1377 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=d6cdb19570c3b30668977d192b24b7095e1aa703;p=xen.git libxl/CODING_STYLE: Clarify the singular statement in a conditional statement explanation. It takes a bit of thinking to parse the original statement. It looks like it is missing an ',' - right after the 'braced' to make it obvious that: if (X) return XYZ; is OK, while multiple conditionals require braces. Changing the 'apart from' with 'except' makes it more obvious (I hope). Signed-off-by: Konrad Rzeszutek Wilk Acked-by: Ian Jackson --- diff --git a/tools/libxl/CODING_STYLE b/tools/libxl/CODING_STYLE index 522d1c98b4..01ee25b392 100644 --- a/tools/libxl/CODING_STYLE +++ b/tools/libxl/CODING_STYLE @@ -294,7 +294,7 @@ Libxenlight coding style is super simple. Avoid tricky expressions. 5. Block structure -Every indented statement is braced apart from blocks that contain just +Every indented statement is braced, except blocks that contain just one statement. The opening brace is on the line that contains the control flow statement that introduces the new block; the closing brace is on the