Unverified Commit 3070cfc6 authored by astaxie's avatar astaxie Committed by GitHub

Merge pull request #3396 from astaxie/FixAnnotationOnSnakeString

Fix #3192
parents 1a66ad56 c4c3067a
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment