Remove useless space

This commit is contained in:
Patrick O'brien 2016-08-21 12:34:18 +10:00
parent d40058c3ce
commit 7f706531a7

View file

@ -237,7 +237,7 @@ func PrefixStringSlice(str string, strs []string) []string {
}
// Placeholders generates the SQL statement placeholders for in queries.
// For example, ($1,$2,$3),($4,$5, $6) etc.
// For example, ($1,$2,$3),($4,$5,$6) etc.
// It will start counting placeholders at "start".
func Placeholders(count int, start int, group int) string {
buf := GetBuffer()