fix:end function doc with full stop

This commit is contained in:
mertakman
2024-09-21 02:10:25 +01:00
parent 9025adf44a
commit c06fca1aa4

View File

@@ -542,7 +542,7 @@ func (f *Fn) ParamPrintList() string {
return join(f.Params, func(p *Param) string { return fmt.Sprintf(`"%s=", %s, `, p.Name, p.Name) }, `", ", `)
}
// SyscallN returns a string representing the SyscallN function
// SyscallN returns a string representing the SyscallN function.
func (f *Fn) SyscallN() string {
return syscalldot() + "SyscallN"
}