[Compiler CLI] Make language version description not in capital letters

^KT-51673 Fixed
This commit is contained in:
Victor Petukhov
2022-03-22 09:02:10 +03:00
committed by teamcity
parent 22830cf159
commit 25a06bdc56
4 changed files with 7 additions and 7 deletions
@@ -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
}
}