As many people here have posted, and I totally agree with, you should strive for comment-less code. You're native written language of choice doesn't compile and unit tests don't test it, so it's never going to be as up to date as regular code.
What comments should express is meta-information. I think of it this way. The code itself describes what it's doing. Good structure and variable/method names should provide most of the why the code is doing that. But what it can't express is the next level up; why the code is written that way and not another (for example). A lot of that history should live in the version control history of course, but some of it deserves to elevated to a more obvious in-your face placement. For me, that's what comments are for.
Examples include references for algorithms used.
// This tree traversal is from "Algorithm T", section 2.3.1 of Knuth vol 1.
...
// The rules to determine account eligibility were taken from the brainstorming session with
// accounting on 3/23/09
...
// This is using sort algorithm X on purpose; performance tests on real world data showed
// it to be faster than the theoretically faster algorithm Y
...
The third one in particular is the majority of comments I try to make. Whenever there's an obvious way, but it didn't work for some reason, it's good to document that the obvious way wasn't ideal. Otherwise someone might come along and "clean it up" to be more obvious and run into the same issues that you ran into long ago.