Hello,
In 16.1, it says:
Use braces with all multi-line blocks.
But in the examples, there's a contradiction:
// good
if (test) return false;
And
// bad
function foo() { return false; }
The second one shouldn't say 'bad' since it's not multi-line block like the rule says.