in reply to Too much documentation?
The only disadvantage to having a huge amount of comments is that you may be causing confusion. Try to be concise and clear, but use as many words as you must to get your point across.
Bad comments are ones that are completely obvious simply from looking at the code. For example,
That comment would be worthless, since even a non-programmer can just glance at the code and tell what it does.# Print the contents of the string variable $foo print $foo;
|
|---|