bzm3r: > Also, it seems the doc comments RFC left defining how function arguments ought to be recorded in doc strings as "future work"...
I think this might be common missunderstanding:
We specified it for "lambda-formals".
#### Lambda formals
```nix
/**Doc for the whole lambda function*/
{
/**Doc for formal 'a'*/
a
}:
a
```
Ah, I think I see. Okay, so this is presumably also where we put type information? (does "lambda formal" have a more specific meaning outside of nix/nixos?)