So I only recently discovered the TODO comment. For those of you that don't know, most modern IDE's will recognize this word in a comment and flag the comment line a different colour so It stands out.
EG.
//Need to talk to Bill about refactoring this code
//TODO:Need to talk to Bill about refactoring this code
You may notice in IDE's like Eclipse or Rubymine highlight the TODO comment and some nice other features to do with it.
My question is: What other keywords are there like the TODO? It seems like a much better way of communicating to developers through comments and a feature that should be a bit more widely known in IDE's. Their purpose is to help with development after all..