> Bad Code Comments | Courtney Rosenthal

Bad Code Comments

Bad comments are worse than no comments.

Posted: June 19, 2022

Good code comments are good. They help the reader better understand what’s going on with the code.

Bad code comments are bad. Bad comments are worse than no comments.

Bad code comments generally fall into two types.

One type of bad code comment is a wrong comment. This kind of comment makes a statement that is factually incorrect. Like this:

# Calculate the circumference
result = pi * radius^2

(πr² is the area of a circle, not its circumference.)

Sometimes wrong comments are just due to a programmer misunderstanding or mistake. Frequently, they can result from changes to existing code that render the comment incorrect. (So, kids, when fixing or changing existing code, be sure to update the comments too.)

Another type of bad code comment is the unhelpful comment. Like a bad play-by-plan announcer, this comment uselessly explains what you already plainly see.

# Calculate the result
result = pi * radius^2

These kinds of comments often are authored by inexperienced coders. They’ve heard that code comments are important (true!) so (by gum!) they’re going to write a comment.

Comments should be used for explaining things that are not clear from a simple reading of the code. If you can make the code clearer, maybe you don’t even need a comment. In the examples above, I’d consider changing the “result” variable to “area”, giving:

area = pi * radius^2

There, no code comment needed – unless it would be helpful to explain why the area is being calculated. Otherwise, comment not required.

Sometimes no comment is the best comment.

It's Just This Little Chromium Switch Here

Latest blog posts

Holiday Letter 2023

Jan 4, 2024

Greetings! I hope you had a most excellent 2023.

Austin Open Data

Jul 27, 2023

I gave this statement today, in response to a recent audit of the City of Austin Open Data Portal....

Holiday Letter 2022

Dec 23, 2022

Greetings! I hope you had a most excellent 2022.

Protect Austin Public Library from Library Book Bans

Aug 30, 2022

On Thursday, September 1, the Austin City Council is poised take a stand opposing book banning and library censorship. At...