fix(docgen): add double space after line of text

pull/260/head
sammyette 2023-12-02 08:22:40 -04:00
parent 77979dca19
commit 393b2009bf
Signed by: sammyette
GPG Key ID: 904FC49417B44DCD
1 changed files with 1 additions and 1 deletions

View File

@ -555,7 +555,7 @@ func main() {
`, htmlSig, dps.FuncName))
for _, doc := range dps.Doc {
if !strings.HasPrefix(doc, "---") {
f.WriteString(doc + "\n")
f.WriteString(doc + " \n")
}
}
f.WriteString("#### Parameters\n")