vote up 4 vote down star

Hello everybody!

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.

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.

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.

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.

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. ;)

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?

Thanks!

Michael

flag

It's important to note that documentation, like code, is a living thing. The code and documentation may have had a harmonious relationship at one time, but like people, over time they can grow apart. – Bernard Dy Aug 5 at 20:42

14 Answers

vote up 24 vote down check

Incorrect documentation that looks authoritative is worse than no documentation.

Incomplete documentation is better than no documentation.

Speculative documentation that is marked as such is, often, better than no documentation.

link|flag
vote up 1 vote down

No documentation is far better. I would rather have to understand it myself than be mislead by incorrect guidance.

link|flag
vote up 0 vote down

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.

link|flag
vote up 3 vote down

I find the quality of the code has considerably more bearing on my ability to work on it than the quality of the documentation.

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.

Bad 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 anything.

link|flag
vote up 1 vote down

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 :/)

link|flag
vote up 0 vote down

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.

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.

link|flag
vote up 0 vote down

Wrong documentation is worse than no documentation.

link|flag
vote up 6 vote down

"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)"

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.

link|flag
vote up 0 vote down

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).

I would prefer no documentation to bad documentation.

link|flag
vote up 0 vote down

hmm.. the question to ask yourself is: is the bad documentation bad, or is it that it is correct and the code is wrong?

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.

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.

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.

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 :-)

link|flag
vote up 1 vote down

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?.

If it's an assist from someone who has worked their way through the code before, it can give you a heads up.

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.

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.

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)

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

No documentation is far better.

In fact, I am willing to go one step further. Keep documentation at a high level, and don't document too many details.

Once you have a decent understanding of the high level structure, no documentation is better than understanding the code, by reading the code.

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.

link|flag
vote up 1 vote down

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.

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.