From cd4363640ef21a08f61e311aa3836cd74309bd0c Mon Sep 17 00:00:00 2001 From: Cedric Beust Date: Tue, 1 Dec 2015 14:48:56 -0800 Subject: [PATCH] Typo. --- src/main/kotlin/com/beust/kobalt/Args.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/com/beust/kobalt/Args.kt b/src/main/kotlin/com/beust/kobalt/Args.kt index 26491a07..bf1b44e8 100644 --- a/src/main/kotlin/com/beust/kobalt/Args.kt +++ b/src/main/kotlin/com/beust/kobalt/Args.kt @@ -42,7 +42,7 @@ class Args { @Parameter(names = arrayOf("--port"), description = "Port, if --server was specified") var port: Int = DEFAULT_SERVER_PORT - @Parameter(names = arrayOf("--profiles"), description = "Comma-separate list of profiles to run") + @Parameter(names = arrayOf("--profiles"), description = "Comma-separated list of profiles to run") var profiles: String? = null @Parameter(names = arrayOf("--resolve"), description = "Resolve the given dependency and display its tree")