What’s the proper way to refer to lambda parameter...
# announcements
t
What’s the proper way to refer to lambda parameters in KDoc? I have:
Copy code
/**
     * A filter to apply to the full list of attached accounts.
     *
     * @param List<Account>  The complete list of Accounts.
     * @param Boolean        Whether the Account is active.
     */
    val filterAccounts: (List<Account>, Boolean) -> List<Account>