Skip to content

Instantly share code, notes, and snippets.

@joepie91
Created November 13, 2014 15:40
Show Gist options
  • Save joepie91/f514b1cbd28a2fa54357 to your computer and use it in GitHub Desktop.
Save joepie91/f514b1cbd28a2fa54357 to your computer and use it in GitHub Desktop.
// BAD:
if (condition == true)
doThing();
// GOOD:
if (condition == true) {
doThing();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment