The library that I'm working with has functions that has many parameters with long names. To make the code more readable, the parameters a put one per line (a standard practice in many languages). When doing this in Go, you need to put a comma after the last parameter if the ) isn't on the same line as the last parameter.
https://play.golang.org/p/97hdtV0Qwf
