Fix typo in kotlinc-js help

File separator is '/', path separator is ':' or ';'
This commit is contained in:
Alexander Udalov
2017-05-15 18:03:25 +03:00
parent 18a211cb84
commit 9b85fed3c4
2 changed files with 3 additions and 2 deletions
@@ -35,7 +35,8 @@ public class K2JSCompilerArguments extends CommonCompilerArguments {
@Argument(
value = "-libraries",
valueDescription = "<path>",
description = "Paths to Kotlin libraries with .meta.js and .kjsm files, separated by system file separator")
description = "Paths to Kotlin libraries with .meta.js and .kjsm files, separated by system path separator"
)
public String libraries;
@GradleOption(DefaultValues.BooleanFalseDefault.class)