If a comment is wrapped by /* ... */ (block comment) it is rendered in blue and the succeeding lines have the same color until there is a /** ... */ doc comment. Otherwise, doc comments are rendered in gray. Sample that should show up the bug:dbCode:Normal line
// inline comment
/**
* Doc comment
*/
Another normal line
/* block comment -- single line or multiline, doens't make a difference */
These lines
will be rendered
like the block comment
// another inline comment
/**
* A doc comment
* lines after the closing
* of this comment will be
* rendered sanely
*/
more code lines
yet more
// another inline comment

