Skip to content

Commit

Permalink
fix a comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ldemailly committed Nov 2, 2023
1 parent 078f4e7 commit 15f071a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion env/env.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ func CamelCaseToLowerSnakeCase(s string) string {
return ""
}
words := SplitByCase(s)
// ToUpper + Join by _
// ToLower + Join by _
return strings.ToLower(strings.Join(words, "_"))
}

Expand Down

0 comments on commit 15f071a

Please sign in to comment.