Post Made Community Wiki by Community
show/hide this revision's text 2 added 399 characters in body

I used to hate writing design documentation. The main reasons I hated it have already been touched on in some of the answers here:

  • It seemed like a waste of time. Nobody was ever going to read it.
  • It got out of date as soon as the software changed.
  • Writing documentation in Microsoft Word was nightmarishly tedious
  • It seemed impossible to organize documentation usefully.

But that has all changed. I don't love writing design documentation now, but I do it, and it doesn't make me feel like I'm pounding my head against a wall. What changed? Two things:

First, I worked on projects where I had to explain my software design to other people. Other developers had to interoperate with my code, or extend it, or maintain it. I learned very quickly that while I write very clean, readable, self-documenting code, once the scale of a project grows past a certain point, people are going to need more than a program listing to get started working with it.

The other thing that changed is that I got a lot of experience working with other developers' designs that were underdocumented. I would get through a week of research and prototyping, and at the end of that time find myself with a level of understanding that I could have picked up by reading a two-page document, had it existed. I came to resent developers who think so little of my time that they wouldn't spend any of their own to mitigate the problem.

So, here's my advice on writing design documentation productively and usefully:

  • Use a wiki. I can't emphasize this enough. A wiki does four things for you. It lets you build documentation in concert with other people. It makes it easy to build navigation links into your documentation, so people can actually find the documentation you've written. (That's a huge, huge problem with using Word as your documentation tool.) It has built-in (and useful) version control. And, maybe most of all, it puts hard limits on the amount of formatting you can do, so you don't spend a lot of time screwing around with making it look nice.
  • Integrate the wiki with your bug-tracking system. Good bug-tracking systems, like FogBugz or Trac, already do this. Bugs often come about because of poor design. Having the wiki integrated with the bug tracking system makes it easy to correlate bug reports and feature requests with design documentation and vice versa. It often happens, when I'm resolving a bug, that I realize that the bug came about because the underlying design is poorly understood. So I document it.
  • Don't write very much. The complaints about design documentation are well-founded. A lot of it is redundant. It does get out of date when the software changes. You shouldn't be thinking "How do I explain the design of this software?" You should think, instead, "What's is there about this software that I couldn't easily learn from reading the code?' Document that. In particular:
  • Look for concerns that cut across classes, and document them. Generally, you can rely on the comments in your classes to tell you what's going on and why. But it often happens that class A is doing something a certain way, and class B is doing something a certain way, and their design has to do with a concern that neither class really encapsulates. For instance, I'm building an application framework that supports a number of its own data types, like time-of-day, or multiple-choice. Data-type functionality is spread across multiple classes - there are UI classes, database helper classes, etc. It's really useful to have one page in the wiki that explains what each data type is, how it functions, and why we even support something as stupid as a time-of-day data type.
  • Listen to your colleagues. Every time you have a conversation with someone else about what your code is doing, you should ask, "Did we really need to do that?" If you write design documentation properly, every hour you spend writing it is two or three hours you don't spend having to put the problem you're working on aside so that you can help someone else with theirs.
show/hide this revision's text 1

I used to hate writing design documentation. The main reasons I hated it have already been touched on in some of the answers here:

  • It seemed like a waste of time. Nobody was ever going to read it.
  • It got out of date as soon as the software changed.
  • Writing documentation in Microsoft Word was nightmarishly tedious
  • It seemed impossible to organize documentation usefully.

But that has all changed. I don't love writing design documentation now, but I do it, and it doesn't make me feel like I'm pounding my head against a wall. What changed? Two things:

First, I worked on projects where I had to explain my software design to other people. Other developers had to interoperate with my code, or extend it, or maintain it. I learned very quickly that while I write very clean, readable, self-documenting code, once the scale of a project grows past a certain point, people are going to need more than a program listing to get started working with it.

The other thing that changed is that I got a lot of experience working with other developers' designs that were underdocumented. I would get through a week of research and prototyping, and at the end of that time find myself with a level of understanding that I could have picked up by reading a two-page document, had it existed. I came to resent developers who think so little of my time that they wouldn't spend any of their own to mitigate the problem.

So, here's my advice on writing design documentation productively and usefully:

  • Use a wiki. I can't emphasize this enough. A wiki does four things for you. It lets you build documentation in concert with other people. It makes it easy to build navigation links into your documentation, so people can actually find the documentation you've written. (That's a huge, huge problem with using Word as your documentation tool.) It has built-in (and useful) version control. And, maybe most of all, it puts hard limits on the amount of formatting you can do, so you don't spend a lot of time screwing around with making it look nice.
  • Integrate the wiki with your bug-tracking system. Good bug-tracking systems, like FogBugz or Trac, already do this. Bugs often come about because of poor design. Having the wiki integrated with the bug tracking system makes it easy to correlate bug reports and feature requests with design documentation and vice versa. It often happens, when I'm resolving a bug, that I realize that the bug came about because the underlying design is poorly understood. So I document it.
  • Don't write very much. The complaints about design documentation are well-founded. A lot of it is redundant. It does get out of date when the software changes. You shouldn't be thinking "How do I explain the design of this software?" You should think, instead, "What's is there about this software that I couldn't easily learn from reading the code?' Document that. In particular:
  • Look for concerns that cut across classes, and document them. Generally, you can rely on the comments in your classes to tell you what's going on and why. But it often happens that class A is doing something a certain way, and class B is doing something a certain way, and their design has to do with a concern that neither class really encapsulates. For instance, I'm building an application framework that supports a number of its own data types, like time-of-day, or multiple-choice. Data-type functionality is spread across multiple classes - there are UI classes, database helper classes, etc. It's really useful to have one page in the wiki that explains what each data type is, how it functions, and why we even support something as stupid as a time-of-day data type.