You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 = ???
}