is it possible for one KDoc to reference an overlo...
# announcements
n
is it possible for one KDoc to reference an overloaded method like:
Copy code
/**
 * Something [methodName] something
 */
fun methodName() {}

/**
 * Other documentation
 */
fun methodName(string: String) {}
Where the
[methodName]
directs to the methodName(string: String) method