Some people like to put the open { bracket on a separated line, e.g:
if(...)
{
//...
}
Is editing this code by merging the first two lines into single one rude?
|
Some people like to put the open
Is editing this code by merging the first two lines into single one rude? |
||||
|
Is it rude? Yes. Mostly because that brace style is ugly as sin, but also because you're imposing your personal preferences on someone else's writing without good cause. But yeah, mostly because that brace positioning style sucks. That said, if doing so helps you trim down a code block so that it can be read without scrolling... AND you're making other substantial improvements at the same time (indentation, formatting, grammar, tags, etc.)... Then go ahead. Related: Etiquette on editing source code formatting for style preferences |
|||||||||||
|
|
It's generally accepted that you shouldn't do any more than
Changing code style would be off-limits, as would doing things like turning (using C# as an example):
into
Because now you're no longer working with the same code the OP is trying to debug. See also: |
|||
|
|
|
Don't edit just to fiddle with the braces. However, if in the course of trying to repair severely horrible code formatting, you run the code through |
|||
|
|
|
Generally, you'll want to leave the OP's coding style alone. Unless it makes the code overbearingly hard to read or excessively long (they do that for every single function of a rather long block of code), there's really no need to change it. The only thing you need to focus on is making sure that their indentation is correct. That extra line for the opening bracket isn't going to bother an experienced programmer who has seen it both ways many, many times. |
|||
|
|
Rude or not it is an invitation to start a holy war. We go to great lengths to keep brace style wars off the site. Please don't invite them on. OTBS Rules! |
|||
|
|
if(...)really is an eyesore – prusswan Sep 7 '12 at 21:46