Skip to content

Instantly share code, notes, and snippets.

@erikbuild
Created September 1, 2011 22:19
Show Gist options
  • Select an option

  • Save erikbuild/1187443 to your computer and use it in GitHub Desktop.

Select an option

Save erikbuild/1187443 to your computer and use it in GitHub Desktop.
I don't see how this:
if (foo)
{
// something
}
is more readable than this:
if (foo) {
// Something
}
PARTICULARLY when you have multiple nested things.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment