Executed go fmt to fix formatting

This commit is contained in:
Thomas Boerger 2016-09-13 11:49:47 +02:00
parent f331b90c04
commit 467e50e893
No known key found for this signature in database
GPG Key ID: 5A388F55283960B6

View File

@ -134,7 +134,7 @@ func toQueryMarks(primaryValues [][]interface{}) string {
for _, primaryValue := range primaryValues { for _, primaryValue := range primaryValues {
var marks []string var marks []string
for _,_ = range primaryValue { for _, _ = range primaryValue {
marks = append(marks, "?") marks = append(marks, "?")
} }