vote up 20 vote down star
16

I ask because I quite enjoy it! I'm talking about design documentation and implentation notes (NOT user manuals), which are non-existent in most of the codebases I've been handed. I can understand why a developer wouldn't want to write requirements (that's the analyst's job) or the user documentation (that's a technical writer's job) but I don't get why developers hate writing design docs.

I don't think I would feel as if I'd finished the job if I only wrote the code and walked away -- mainly because when I've been introduced to code-only situations I've seen how hard it is to figure out what's been done and what the software does. I would hate for people to suffer the same situation when inheriting my code.

What makes you loath writing supporting documentation for your code?

flag
1  
Also, and IMO more importantly, when you're writing for developers you're talking to someone who can understand your design, someone who can feel the beauty of the design. You're talking about algorithms and such things that you love. I believe that is the difference Stewart is talking about. – sundar Oct 25 '08 at 15:31
show 7 more comments

53 Answers

prev 1 2
vote up 0 vote down

Writing good code documentation and writing good software involve overlapping but distinct skill sets; you certainly have to understand the code to document it, but the fact that you wrote it doesn't necessarily mean you can document it adequately. Many developers / "software engineers", including myself, suffer from a blind spot in this area; having written / designed something, we no longer understand what it looks like to someone who doesn't already understand it. We can answer questions about it, and help someone on an individual basis to understand it, but writing documentation suitable for general consumption is hard, because we don't know which aspects are important, and which are self-evident. Thus we either end up writing no documentation at all, or writing documentation that goes into painful detail about trivial obvious aspects, while glossing over more important aspects, because we just can't tell the difference.

link|flag
vote up 0 vote down

I personaly hate the tools used for documentation. Word, etc. Anybody knows of a markup language that is easy to learn, that will allow me to create UML diagrams, so I can do all my work from emacs and write the documentation at the same time I write my code? Export to PDF and possibly MS Word would be a huge benefit also. Organizing this documents would be also so much easier because I could check it in together with the source code.

link|flag
vote up 1 vote down

Nobody is going to read it.

A well designed code base is its own documentation. Future maintainers are as likely to read your documentation as the end user is to read the User Manual, which is to say, they will not.

link|flag
vote up -1 vote down

@Kristijan: LaTex is able to do all of that, and more.

link|flag
1  
Shouldn't this be a comment on Kristigan's answer? – Martin Brown Nov 26 '08 at 11:44
vote up 0 vote down

Not all software engineers hate writing documentation; most good ones will accept it's an important part of the process, and will often use tools and techniques such as generating documentation from source code or using Agile-like techniques to record design decisions.

Bottom line is (as summarised in an excellent quote I once heard from a friend), documentation is like sex; when it's good, it's very good, and when it's bad, it's better than nothing.

link|flag
vote up 1 vote down

Designing and writing software is like cooking and enjoying the meal.

Writing documentation is like washing the dishes.

link|flag
vote up 0 vote down

The rule by commite problem. I've recieved perfectly good documentation from other coders. Clear concise and easy to digest. Then managers and QA got a hold of it and the coder spent another 4 hours formatting and correcting grammar. A week after he "cleaned up" the document and we both consumed it, a managers manager got a hold of it and made us change it. Another 4 hours and it was approved. The contents that we cared about was unchanged and the code was exactly the same as it would have been had the document been kept between programmers. IN the end the document was not tied to the code and was lost in the document management system. This pissed us both off and wasted at least 1.5 coder days. There. That's the reason I hate it..

link|flag
vote up 0 vote down

Let me preface this by saying I won awards for technical writing during my university career, so writing is not a problem. Believe it or not, I actually enjoy writing user manuals and customer oriented documentation. It does give me a sense of pride that I can explain complicated concepts to users and they can immediately get to using the products.

So why do I hate documentation? I don't. I just hate writing the documentation required in most places as it serves no purpose; other than to absolve other people of responsibility.

For example, I have often encountered product managers who know absolutely nothing about the product. So they write a functional spec that is utterly useless. Now, I am supposed to tailor my documentation to match up to a poor functional specification. This follows all the way down the line of course in a matrix fashion... it infects everything from the design document to the test documentation. If anything, the product managers SHOULD BE experts in their field. They should know more about the practical use of the product than the software engineers. This is a principal problem I believe.

Now in terms of documenting 'code' there are a few issues. 1. Code should be well written so it doesn't need in depth documentation 2. There must be design documents that describe the overall functionality of the system. However, here too, I don't see the point of duplicating information. I often see documentation where it looks like the API was just copied from the header file to the document. I tend to just refer the documentation to the header file itself. It keeps the documentation short and up to date.

I have a general rule. Any documentation written before coding might be useful. Documentation written after coding is generally useless. Making up flowcharts after already coding it is just a waste of time. Sometimes it is useful to document things after coding... if you're doing something tricky for example. However, the general rule applies... if you can code it without a design document, someone else should be able to read it without a design document :P

link|flag
vote up 0 vote down

I think it comes down to the size of the potential audience. Documents just don't have reach that our code does. I thinking about programming as an art and at the end of the day, we want our art to be seen and appreciated.

link|flag
vote up 2 vote down

Because documents don't compile :)

link|flag
show 1 more comment
vote up 0 vote down

I like writing documentation. I like knowing where everything is.

Anyone who doesn't is under the illusion that software development is about writing code. This isn't so. Writing the code is as much a part of software development as checking the tire pressure is a part of being a mechanic. It is important, but its completely overshadowed by everything else involved.

link|flag
vote up 0 vote down

The thing that people forget is that source code is a design. By this I mean that what the computer runs is not source code, but compiled code. Designs are normally made by designers so that builders know how to build what they wanted. In the computer world the builder is the compiler and the designer is the programmer, so source code is filling the roll of the design.

Source code already is an abstraction of what the computer is actually going to do. Any abstractions it is possible to make are normally already baked into the source code languages we use. If you can find a way to make meaningful abstractions to put in a design document, aren't you just creating a higher level programming language?

A lot of attempts have been made to abstract out the interesting parts of the software into a design format, but I don't think I have seen one that worked well yet. UML is almost there, but often does not match the reality well enough. How exactly are you supposed to present C#'s gets and sets in UML?

For the above reasons I’m with Jeff Attwood in that if your source code is not clear enough to understand anyway, then you are better off making your source code better than trying to explain it in a word document.

link|flag
vote up 0 vote down

Sometimes I don't even know how I solved a problem or can't remember it, so I know writing the documentation is going to be hard :)

link|flag
vote up 0 vote down

I think it is because we don't want to do thing twice in another language.

All programmers are lazy, and we should be lazy. We want machines do what we don't want to do ourself.

The source code does describe what it is. Technical documents will describe the same thing again in another high level language -> English, UML, others and others others.

If our tools smart enough, it should translate source code and comments into documents.

link|flag
vote up 0 vote down

I don't know about everyone else, but when I write code that is intended to be used by other programmers, I really like to write some documentation (nothing formal or rigorous, just a section about the basic idea and a section about how to use it, and possibly some notes).

However, if what I'm writing is not meant to be for other programmers' use, I don't find much motivation in writing about it, unless I'm 100% sure that there are others who will read it.
I don't want to write something that no one's going to read!

link|flag
vote up 0 vote down

I would say the most important factors are Time and Tools. Tell me a tool which will auto complete my sentences :)

And yes, at the cost of repeating some answers here, we are lazy and it is invariably boring to write.

link|flag
vote up 0 vote down

I think I must be unique as a programmer. Because I actually LIKE and ENJOY writing documentation after implementing the solution. It "feels good" to write down a memory dump of all the important facts still on the stack in your head. And it "feels good" to know that all these little intricate details won't just get lost. And that months or years later you can just re-read the documentation you wrote and it gets you up to speed much more quickly.

I setup Screwturn Wiki for our documentation on new projects a few weeks ago and it is great. It is so easy to write or update articles in the Wiki that it becomes "fun" to maintain it. And because the Wiki-style format makes your articles "look" visually pleasing on the eye it just makes it all the better.

link|flag
vote up 0 vote down

I actually enjoy documentation. It is like writing the storyboard for a movie, where the actual coding is like the script-writing. Even if not as formal as it could be, some level of documentation does help to flesh out ideas, isolate problems before they become problems, and provide insight as to the full progression of the project.

The reason that I don't do it as much as I would like to is not because of me, though. There is never enough time, according to the powers that be. I often find myself filling my commute with documentation tasks that I otherwise would not be able to do on-hours.

link|flag
vote up 0 vote down

Its just because i hate my manager and dont like documenting any thing and it doesnt add any value to me.Thats what i feel.

link|flag
vote up 0 vote down

Because I'm not given time to write it. Because the people who come after me and enhance, modify or refactor my designs, don't also change the docs, making them obsolete very quickly. Because we use a version of MediaWiki with a severely brain-damaged search feature that ranks several irrelevant or ancient matches before the page whose title is my search term.

Am I happy about this? No. But what can you do when the dev cycle resembles rushing from emergency to emergency?

link|flag
vote up 0 vote down

I've only realized recently that I am one of those annoying people who does not document consistently. I had originally skipped this step because, "I was in a rush". My job requires me to perpetually extinguish fires, many of them created by others, and I thought that "If I put all my time into coding, eventually I can go back... I just need to get this done right now." I've abandoned that philosophy for a couple of reasons.

First, I find that as I document, I have a much clearer idea what the functions are supposed to do and this often makes the code much more intuitive in the end. Ironically, writing documentation makes the code more self-documenting.

Second, by the very act of documenting, I know my own code even better and therefore can keep more of it in my head at the same time. When trying to keep track of dozens of functions, and potentially hundreds of objects, anything which can serve as a memory aid is useful. Thus, my speed actually increases when debugging.

Finally (and far from least), if I document, I can relegate the work to the people who would otherwise be unable to help fix stupid problems. More importantly, their questions on projects which were done months or years ago will be answered by documentation, and not by the ambiguous medium of, "oral tradition".

As an example - there is a project which I worked on briefly after the original programmer quit. He did not document (at all), and I unfortunately followed suit. Now, I find that the person who has taken over this project (as I was taken to act as a fireman again) needs to ask me quite a few questions on how things work. What was originally done to save time has now hurt me severely.

link|flag
vote up 4 vote down

Something you could try is providing good and almost fun tools for keeping track of the documentation within Eclipse.

One example is Doqua, a documentation Eclipse plugin for developers.

link|flag
vote up 0 vote down

Simply because writing good documentation is about as difficult as writing code, or at least it seems to take just as long, but we're not paid for that sort of writing.

link|flag
prev 1 2

Your Answer

Get an OpenID
or

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