When generating a signature file from an internal record with a code comment, the generated code is not indented far enough.
Repro steps
module SignatureFileGeneration.MyModule
type PullActions =
internal
{
/// Any repo which doesn't have a master branch will have one created for it.
Log : int
}
leads to
module SignatureFileGeneration.MyModule
type PullActions =
internal
{
/// Any repo which doesn't have a master branch will have one created for it.
Log: int
}
Expected behaviour
The generated signature should be considered equivalent to the backing source file.
Actual behaviour
The generated code isn't valid:

Known workarounds
Edit signature file by hand.
When generating a signature file from an internal record with a code comment, the generated code is not indented far enough.
Repro steps
leads to
Expected behaviour
The generated signature should be considered equivalent to the backing source file.
Actual behaviour
The generated code isn't valid:
Known workarounds
Edit signature file by hand.