Skip to content

Commit

Permalink
Wrap comment
Browse files Browse the repository at this point in the history
  • Loading branch information
twpayne committed Jan 15, 2019
1 parent e0b7bad commit 125f4ba
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cmd/os_release.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,8 @@ func upperSnakeCaseToCamelCase(s string) string {
return strings.Join(words, "")
}

// upperSnakeCaseToCamelCaseKeys returns m with all keys converted from UPPER_SNAKE_CASE to camelCase.
// upperSnakeCaseToCamelCaseKeys returns m with all keys converted from
// UPPER_SNAKE_CASE to camelCase.
func upperSnakeCaseToCamelCaseMap(m map[string]string) map[string]string {
result := make(map[string]string)
for k, v := range m {
Expand Down

0 comments on commit 125f4ba

Please sign in to comment.