Some common methods for indicating important comments are TODO, BUG, KLUDGE and TRICKY. You can try this in any language, I’m using this in Action Script, PHP, Flex and Javascript and CSS also
.
1 . // :TODO: Description
Indicates that there is more to do here.
2. // :BUG: [bugid] Description
Shows a known issue here. The comment should also explain the issue and optionally give a bug ID if applicable.
3. // :KLUDGE: Description
Indicates that the following code is not elegant or does not conform to best practices. This comment alerts others to provide suggestions about how to code it differently next time.
4. // :TRICKY: Description
Notifies developers that the subsequent code has a lot of interactions. Also advises developers that they should think twice before trying to modify it.





























