Is there a way in KDoc to link explicitly to a pub...
# dokka
j
Is there a way in KDoc to link explicitly to a public variable rather than a method with the same name? E.g.:
Copy code
/**
 * [bar] links to bar().
 * How to link to val bar?
 */
class Foo(val bar: String) {
    fun bar() {}
}
e