Minor, rephrase usage help for -no-stdlib/-no-reflect compiler arguments

This commit is contained in:
Alexander Udalov
2018-01-10 17:48:52 +01:00
parent 28c77bfb01
commit f9e195351a
2 changed files with 4 additions and 4 deletions
@@ -49,11 +49,11 @@ class K2JVMCompilerArguments : CommonCompilerArguments() {
var noJdk: Boolean by FreezableVar(false)
@GradleOption(DefaultValues.BooleanTrueDefault::class)
@Argument(value = "-no-stdlib", description = "Don't include Kotlin runtime into classpath")
@Argument(value = "-no-stdlib", description = "Don't include kotlin-stdlib.jar or kotlin-reflect.jar into classpath")
var noStdlib: Boolean by FreezableVar(false)
@GradleOption(DefaultValues.BooleanTrueDefault::class)
@Argument(value = "-no-reflect", description = "Don't include Kotlin reflection implementation into classpath")
@Argument(value = "-no-reflect", description = "Don't include kotlin-reflect.jar into classpath")
var noReflect: Boolean by FreezableVar(false)
@Argument(value = "-script", description = "Evaluate the script file")