Sorry, I sent my post before finishing it, so...

It's in same vein as using:

if (cond)
{
  singleStatement;
}

instead of:

if (cond)
  singleStatement;

Because, you can more easily insert statements within the block (without having to navigate to different to insert the brackets).

Reply via email to