We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4f8700 commit 48a68ceCopy full SHA for 48a68ce
.teamcity/builds/apiReferences/ReferenceProject.kt
@@ -7,7 +7,7 @@ import jetbrains.buildServer.configs.kotlin.RelativeId
7
import vcsRoots.KotlinLangOrg
8
9
private fun String.camelCase(delim: String = "-", join: String = "") =
10
- this.split(delim).joinToString(join) { it.capitalize() }
+ this.split(delim).joinToString(join) { it.replaceFirstChar { char -> char.uppercase() } }
11
12
typealias ProjectReferenceAttachBuild = (project: Project, version: String) -> BuildType
13
0 commit comments