<@U0B8ZP13Q> Interesting. I would usually write th...
# getting-started
r
@cedric Interesting. I would usually write that like so:
Copy code
tasksByPlugins[name]
    .distinctBy { it.name }
    .sortedBy { it.name }
    .forEach { task -> sb.append("    ${task.name}\t\t${task.doc}\n") }
1