Skip to content

Commit

Permalink
Fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
aerialist7 committed May 15, 2024
1 parent 6bb41a0 commit e980a50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/karakum/mui/Strings.kt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ private val MINUS_LETTER = Regex("""-(\w)""")
private val SPACE_LETTER = Regex("""\s(\w)""")

private val toUpperCase: (MatchResult) -> CharSequence = {
it.groupValues[1].toUpperCase()
it.groupValues[1].uppercase()
}

internal fun String.kebabToCamel(): String =
Expand Down

0 comments on commit e980a50

Please sign in to comment.