Comment Re:No amount of programming methology... (Score 1) 99
After commenting code, you should rewrite it so the comment is no longer needed. Embed the semantic content into the source code. This will fix bugs.
Sample:
foo++; // got another special foo
turns into
numSpecialFoo++;
Sample:
foo++;
turns into
numSpecialFoo++;