Closed
Description
If code includes a /
the documentation for the next member will not show correctly on hover. Example below.
object Test {
/** This documentation comment shows correctly. */
def foo: Int = ???
/** So does this one. */
def bar: Int = 2 / 1
/** This documentation comment won't show up on hover. */
def baz: Int = ???
/** This documentation comment will show correctly again. */
def batz: Int = ???
}