in documentation, how would i reference a specific...
# announcements
c
in documentation, how would i reference a specific parameter of a method?
g
Copy code
/**
 * This method [foo] uses params [bar] and [baz]
 */
fun foo(bar: String, baz: Int) = Unit
c
is there a way to reference the parameters from another method?
g
No, I don’t think so, only method itself
c
alright, thanks