Skip to content

Instantly share code, notes, and snippets.

@MitMaro
Last active August 29, 2015 14:18
Show Gist options
  • Select an option

  • Save MitMaro/a0cba40681c098707b3d to your computer and use it in GitHub Desktop.

Select an option

Save MitMaro/a0cba40681c098707b3d to your computer and use it in GitHub Desktop.
Tabs vs Spaces
// wrong
if (true) {
someLongFunctionName(/*somelong item like this that requires a second line*/,
/*some other item */);
}
// correct
if (true) {
someLongFunctionName(/*somelong item like this that requires a second line*/,
/*some other item */);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment