From c4c3067a3181a75c681caa68da017da294d3c999 Mon Sep 17 00:00:00 2001 From: Dennis Date: Thu, 15 Nov 2018 15:16:41 +0800 Subject: [PATCH] Update utils.go --- orm/utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orm/utils.go b/orm/utils.go index 669d4734..b76bb2e3 100644 --- a/orm/utils.go +++ b/orm/utils.go @@ -198,7 +198,7 @@ func ToInt64(value interface{}) (d int64) { return } -// snake string, XxYy to xx_yy , XxYY to xx_yy +// snake string, XxYy to xx_yy , XxYY to xx_y_y func snakeString(s string) string { data := make([]byte, 0, len(s)*2) j := false