A guy I work with is constantly giving me a hard time about not commenting my code enough. Well, I was just fixing some of his code, and was looking at the comments he put in.
This is a contender for the most redundant comment I have ever seen:
// Send Message
SendMessage();
I'd say this comment is redundant too.
// now get the mantissa
int mantissa = FastMessageDecoder_ParseINT32();
For a start the 'now' is completely unnecessary. Of course it's now - it's not going to be next week is it. That leaves 'get the mantissa'. Well, duh!.
This is a contender for the most redundant comment I have ever seen:
// Send Message
SendMessage();
I'd say this comment is redundant too.
// now get the mantissa
int mantissa = FastMessageDecoder_ParseINT32();
For a start the 'now' is completely unnecessary. Of course it's now - it's not going to be next week is it. That leaves 'get the mantissa'. Well, duh!.
Comment