Skip to content

Instantly share code, notes, and snippets.

@simonjefford
Created October 2, 2013 15:04
Show Gist options
  • Save simonjefford/6795195 to your computer and use it in GitHub Desktop.
Save simonjefford/6795195 to your computer and use it in GitHub Desktop.
Why put braces around single lines?
if (someCondition)
service.DoSomething();
// Two weeks later...
if (someCondition)
service.DoSomething();
service.DoThingThatShouldHappenIfSomeCondition(); // maybe Python had the right idea?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment