fix typo and missing end-of-line

This commit is contained in:
Steeve Chailloux 2015-11-09 19:48:53 -06:00
parent 25eedc9a1a
commit f664b678d9
1 changed files with 2 additions and 2 deletions

View File

@ -48,12 +48,12 @@ func generateSQLFromFields(fields string) string {
for i, v := range fds { for i, v := range fds {
kv := strings.SplitN(v, ":", 2) kv := strings.SplitN(v, ":", 2)
if len(kv) != 2 { if len(kv) != 2 {
ColorLog("[ERRO] the filds format is wrong. should key:type,key:type " + v) ColorLog("[ERRO] the fields format is wrong. should key:type,key:type " + v + "\n")
return "" return ""
} }
typ, tag := getSqlType(kv[1]) typ, tag := getSqlType(kv[1])
if typ == "" { if typ == "" {
ColorLog("[ERRO] the filds format is wrong. should key:type,key:type " + v) ColorLog("[ERRO] the fields format is wrong. should key:type,key:type " + v + "\n")
return "" return ""
} }
if i == 0 && strings.ToLower(kv[0]) != "id" { if i == 0 && strings.ToLower(kv[0]) != "id" {