Remove the else-on-newline rule from HACKING

This commit is contained in:
Dana Jansens 2013-08-18 20:03:46 -04:00
parent 881076d2a8
commit 2d5239b60a

View file

@ -40,13 +40,6 @@ not all, guidelines:
{
hi;
}
* else appears on a new line, just like an if
if (testing) {
hi;
}
else if (other) {
bye;
}
* always use braces around conditional blocks that consist of more than one
line, even if they contain a single statement
if (check) {