Error in docs

if (expr) statement else statement;
is wrong it should be
if (expr) statement; else statement;
Just for any confusion like
if ((sounda+soundb)>1) mytest=1; else mytest = sounda+soundb;
where mytest is a variable defined earier
is wrong it should be
if (expr) statement; else statement;
Just for any confusion like
if ((sounda+soundb)>1) mytest=1; else mytest = sounda+soundb;
where mytest is a variable defined earier