From d6cdb19570c3b30668977d192b24b7095e1aa703 Mon Sep 17 00:00:00 2001 From: Konrad Rzeszutek Wilk Date: Fri, 1 Apr 2016 11:13:57 -0400 Subject: [PATCH] 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 --- tools/libxl/CODING_STYLE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.30.2