[Compiler CLI] Make language version description not in capital letters
^KT-51673 Fixed
This commit is contained in:
committed by
teamcity
parent
22830cf159
commit
25a06bdc56
@@ -434,9 +434,9 @@ interface LanguageOrApiVersion : DescriptionAware {
|
||||
|
||||
override val description: String
|
||||
get() = when {
|
||||
!isStable -> "$versionString (EXPERIMENTAL)"
|
||||
isDeprecated -> "$versionString (DEPRECATED)"
|
||||
isUnsupported -> "$versionString (UNSUPPORTED)"
|
||||
!isStable -> "$versionString (experimental)"
|
||||
isDeprecated -> "$versionString (deprecated)"
|
||||
isUnsupported -> "$versionString (unsupported)"
|
||||
else -> versionString
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user