Minor, fix several CLI argument descriptions

This commit is contained in:
Alexander Udalov
2018-06-27 13:25:00 +02:00
parent a765ee41d7
commit 0c45f20515
4 changed files with 4 additions and 5 deletions
@@ -144,7 +144,7 @@ abstract class CommonCompilerArguments : CommonToolArguments() {
@Argument(
value = "-Xuse-experimental",
valueDescription = "<fq.name>",
description = "Enable usages of COMPILATION-affecting experimental API for marker annotation with the given fully qualified name"
description = "Enable, but don't propagate usages of experimental API for marker annotation with the given fully qualified name"
)
var useExperimental: Array<String>? by FreezableVar(null)
@@ -231,7 +231,7 @@ class K2JVMCompilerArguments : CommonCompilerArguments() {
"-Xjvm-default=enable Allow usages of @JvmDefault; only generate the default method\n" +
" in the interface (annotating an existing method can break binary compatibility)\n" +
"-Xjvm-default=compatibility Allow usages of @JvmDefault; generate a compatibility accessor\n" +
" in the 'DefaultImpls' class in addition to the interface method\n"
" in the 'DefaultImpls' class in addition to the interface method"
)
var jvmDefault: String by FreezableVar(JvmDefaultMode.DEFAULT.description)