What is less annoying: no source code documentation or bad code documentation? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T07:06:05Zhttp://stackoverflow.com/feeds/question/167498http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/167498/what-is-less-annoying-no-source-code-documentation-or-bad-code-documentation4What is less annoying: no source code documentation or bad code documentation?Mil2008-10-03T15:44:30Z2009-08-23T07:02:33Z
<p>Hello everybody!</p>
<p>Today I had an argument with a colleague about one of his comments as summary of a method. Mostly he is not writing any summaries but in this case he added one and it was a really bad one: It was not described what the method is doing, it assumed what the method maybe is doing. I have to add that this piece of code was not his own, it was legacy code.</p>
<p>I told him that in this case he should have never made any commentary, only after really checking what is happening there, because someone who does read his opinion as valid statement will not check by himself and screw up. He could have add "This is an assumption, please check for yourself." but he didn't. Even if no commentary was there it would be better because then the developer has to check for himself.</p>
<p>Personally I'm very strict on code documentation. That doesn't mean I comment every line of code but method, class, etc summaries are mandatory and additional lines for difficult code parts are helping too.</p>
<p>I have to add that I work in a team of 10 developers where no one writes code only for himself. Spending less time on code documentation means that other developers are spending more time to get the meaning of the code.</p>
<p>I'm not even able to say if I like no documentation less than this kind of bad documentation. But at the end I guess I spend more time with not documented than not good documented foreign code. So... I hate both. ;)</p>
<p>What do you think? You don't care or do you see these things in your daily work too? What is worse for you: no code documentation or bad code documentation?</p>
<p>Thanks!</p>
<p>Michael</p>
http://stackoverflow.com/questions/167498/what-is-less-annoying-no-source-code-documentation-or-bad-code-documentation/167520#1675201Answer by mspmsp for What is less annoying: no source code documentation or bad code documentation?mspmsp2008-10-03T15:48:15Z2008-10-03T15:48:15Z<p>No documentation is far better. I would rather have to understand it myself than be mislead by incorrect guidance.</p>
http://stackoverflow.com/questions/167498/what-is-less-annoying-no-source-code-documentation-or-bad-code-documentation/167524#1675240Answer by Ólafur Waage for What is less annoying: no source code documentation or bad code documentation?Ólafur Waage2008-10-03T15:49:04Z2008-10-03T15:49:04Z<p>If i would have to choose, i would rather have bad code documentation. Since bad source documentation can spell horror for confusing code later on, making additions to the code close to impossible.</p>
http://stackoverflow.com/questions/167498/what-is-less-annoying-no-source-code-documentation-or-bad-code-documentation/167528#16752823Answer by moonshadow for What is less annoying: no source code documentation or bad code documentation?moonshadow2008-10-03T15:49:59Z2008-10-03T15:49:59Z<p>Incorrect documentation that looks authoritative is worse than no documentation.</p>
<p>Incomplete documentation is better than no documentation.</p>
<p>Speculative documentation that is marked as such is, often, better than no documentation.</p>
http://stackoverflow.com/questions/167498/what-is-less-annoying-no-source-code-documentation-or-bad-code-documentation/167537#1675373Answer by Dan for What is less annoying: no source code documentation or bad code documentation?Dan2008-10-03T15:51:44Z2008-10-03T15:51:44Z<p>I find the quality of the code has considerably more bearing on my ability to work on it than the quality of the documentation.</p>
<p>I've working on code that was almost entirely undocumented (with comments appearing only occasionally), but was still perfectly understandable. I've also worked on code that has reams of docs and virtually every line commented, but verging on impossible to work on.</p>
<p><em>Bad</em> documentation is certainly extremely annoying, but worse is code that is so convoluted and badly-designed that you need to grope though pages and pages of docs to do <em>anything</em>.</p>
http://stackoverflow.com/questions/167498/what-is-less-annoying-no-source-code-documentation-or-bad-code-documentation/167552#1675521Answer by shyamsundar for What is less annoying: no source code documentation or bad code documentation?shyamsundar2008-10-03T15:55:14Z2008-10-03T15:55:14Z<p>No documentation is better. I've been bitten by misleading documentation and have resigned myself to being cynical about what it claims. In most cases its usually what the developer wanted to do rather than what it does actually (especially in the absence of test :/)</p>
http://stackoverflow.com/questions/167498/what-is-less-annoying-no-source-code-documentation-or-bad-code-documentation/167554#1675540Answer by Todd Rowan for What is less annoying: no source code documentation or bad code documentation?Todd Rowan2008-10-03T15:55:26Z2008-10-03T15:55:26Z<p>Bad documentation is worse. Bad documentation often lies (unintentionally or otherwise), which can lead you down the wrong path from the start. Bad docs can keep you from realizing your mistake because you think you're in the wrong when something doesn't work, when really it was never meant to be. Bad docs can also affect your perception of overall product quality, since you can't be sure if the behavior you're seeing is incorrect documentation or an actual bug in the code. </p>
<p>I'd rather have good docs of course, but given the choice between bad docs and just working slowly through the source code, I'll take the source option. </p>
http://stackoverflow.com/questions/167498/what-is-less-annoying-no-source-code-documentation-or-bad-code-documentation/167559#1675590Answer by Andrew Medico for What is less annoying: no source code documentation or bad code documentation?Andrew Medico2008-10-03T15:56:06Z2008-10-03T15:56:06Z<p>Wrong documentation is worse than no documentation.</p>
http://stackoverflow.com/questions/167498/what-is-less-annoying-no-source-code-documentation-or-bad-code-documentation/167560#1675606Answer by Carl Seleborg for What is less annoying: no source code documentation or bad code documentation?Carl Seleborg2008-10-03T15:56:12Z2008-10-03T15:56:12Z<p>"Documentation is like sex; when it's good, it's very, very good, and when it's bad, it's better than nothing. (Dick Brandon)"</p>
<p>No seriously, you have a problem when the documentation is plain wrong. If it's just bad (because it's vague or incomplete for example), you can at least be glad it's there. You notice this very quickly when working with some completely undocumented APIs. MSDN is full of those, where the documentation is incomplete and vague - but it's still so much better than none at all.</p>
http://stackoverflow.com/questions/167498/what-is-less-annoying-no-source-code-documentation-or-bad-code-documentation/167659#1676590Answer by Dave DuPlantis for What is less annoying: no source code documentation or bad code documentation?Dave DuPlantis2008-10-03T16:13:59Z2008-10-03T16:13:59Z<p>One problem with anything other than complete or no documentation is that you may mistake incorrect or incomplete documentation for complete, accurate documentation, and poor documentation can lead to none (why document code? all his comments are wrong anyway).</p>
<p>I would prefer no documentation to bad documentation. </p>
http://stackoverflow.com/questions/167498/what-is-less-annoying-no-source-code-documentation-or-bad-code-documentation/167732#1677320Answer by gbjbaanb for What is less annoying: no source code documentation or bad code documentation?gbjbaanb2008-10-03T16:24:35Z2008-10-03T16:24:35Z<p>hmm.. the question to ask yourself is: is the bad documentation bad, or is it that it is correct and the code is wrong?</p>
<p>eg, the summary says "this routine does xyz", but the code actually does abc in a strange way. If can often be that the summary is right - that's what the code should be doing, but the author was a complete nincompoop.</p>
<p>I've seen this most often when it comes to return codes, the summary gives a good set of codes that should be returned, but the routine returns 0 everytime.</p>
<p>In any case, its a bug and should be fixed or at least marked with a comment. 'Bad' documentation that gets updated, even with just 'WTF?' marks, is better than no documentation. Documentation that looks stale just doesn't get read.</p>
<p>One last thing: choosing "Bad documentation" is certainly better than officially not writing documentation because it might get bad later. Programmers are always finding excuses not to write comments :-)</p>
http://stackoverflow.com/questions/167498/what-is-less-annoying-no-source-code-documentation-or-bad-code-documentation/167742#1677421Answer by Bill K for What is less annoying: no source code documentation or bad code documentation?Bill K2008-10-03T16:27:09Z2008-10-03T16:27:09Z<p>Bad documentation is often on worse code, I'd say bad documentation on good code might be a problem, but how often do you see that?.</p>
<p>If it's an assist from someone who has worked their way through the code before, it can give you a heads up.</p>
<p>If it's from the original author, maybe it can offer some insight to his twisted mindset, perhaps it can be the key to unraveling a mess--or give you a heads-up that some code you are about to refactor is tricker than you'd think at first glance.</p>
<p>I see a lot of people saying bad documentation is worse, but can't come up with a single scenario (and I've never seen one) where it was actually worse. </p>
<p>Usually you hear anti-documentation cries from people who don't really understand what their own code does and can't, therefore, properly comment it. (IE:, they are the authors of the bad code/comment scenario currently under discussion)</p>
http://stackoverflow.com/questions/167498/what-is-less-annoying-no-source-code-documentation-or-bad-code-documentation/167744#1677440Answer by Phillip Wells for What is less annoying: no source code documentation or bad code documentation?Phillip Wells2008-10-03T16:27:36Z2008-10-03T16:27:36Z<p>Bad documentation is worse than no documentation. However, I would argue that, as far as possible, your code should be self-documenting. i.e. you should choose meaningful names for the entities in your code, and have short methods. Comments explaining what the code is doing should then be virtually redundant, because it is clear from the code itself. Comments would mostly be used to explain WHY your code is doing something.</p>
http://stackoverflow.com/questions/167498/what-is-less-annoying-no-source-code-documentation-or-bad-code-documentation/1317478#13174780Answer by OverClocked for What is less annoying: no source code documentation or bad code documentation?OverClocked2009-08-23T01:11:45Z2009-08-23T01:11:45Z<p>No documentation is far better. </p>
<p>In fact, I am willing to go one step further. Keep documentation at a high level, and don't document too many details. </p>
<p>Once you have a decent understanding of the high level structure, no documentation is better than understanding the code, by reading the code. </p>
<p>I don't trust anyone working on a module who does not understand what that module's code is actually doing. If you want to use the module as a black box, fine, read the doc. If you want to change its behavior, almost better to not give you documentation and have you figure out what it does in all the cases.</p>
http://stackoverflow.com/questions/167498/what-is-less-annoying-no-source-code-documentation-or-bad-code-documentation/1317502#13175021Answer by Stephen C for What is less annoying: no source code documentation or bad code documentation?Stephen C2009-08-23T01:27:47Z2009-08-23T07:02:33Z<p>If developers (i.e. users of the APIs) have access the source code, then bad documentation is worse than no documentation. But at least once the users have figured out that the documentation is bad, they can look at the source code to find out the answers to their problems.</p>
<p>If developers don't have source code access, then bad documentation may be better than no documentation, depending on how simple the APIs really are to use and how bad the documentation is. If the documentation is really bad and source code is unavailable, the user may need to give up on using the APIs entirely.</p>