Browse Source

Update snake.go

tags/v0.1.0
bestplay GitHub 6 years ago
parent
commit
f2ad438e9e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      snake.go

+ 1
- 1
snake.go View File

@@ -13,7 +13,7 @@ func ToSnake(s string) string {
for i, v := range s {
// treat acronyms as words, eg for JSONData -> JSON is a whole word
preIsCapital := false
if i - 1 > 0 {
if i > 0 {
w := s[i-1]
preIsCapital = w >= 'A' && w <= 'Z'
}


Loading…
Cancel
Save