How do you document lambda parameters that have pa...
# dokka
n
How do you document lambda parameters that have parameters themselves? e.g.
Copy code
/**
 * @param f the action to run.
 */
fun foo(f: (String) -> Unit
I want to document what
String
here is.