feat: Simplify option descriptions

This commit is contained in:
oSumAtrIX
2024-08-14 15:33:17 +02:00
parent 9b03963687
commit 45c998b335
4 changed files with 11 additions and 11 deletions

View File

@@ -50,7 +50,7 @@ internal object PatchCommand : Runnable {
@CommandLine.Option(
names = ["--ei"],
description = ["Index of the patch in the combined list of all supplied files containing patches."],
description = ["Index of the patch in the combined list of the supplied RVP files."],
required = true,
)
internal var index: Int? = null
@@ -82,7 +82,7 @@ internal object PatchCommand : Runnable {
@CommandLine.Option(
names = ["--di"],
description = ["Index of the patch in the combined list of all supplied files containing patches."],
description = ["Index of the patch in the combined list of the supplied RVP files."],
required = true,
)
internal var index: Int? = null
@@ -200,7 +200,7 @@ internal object PatchCommand : Runnable {
@CommandLine.Option(
names = ["-p", "--patches"],
description = ["One or more path to files containing patches."],
description = ["One or more path to RVP files."],
required = true,
)
@Suppress("unused")