From 821035107d7264580275f395e9e3fcef91394afd Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Mon, 18 Dec 2023 19:45:35 +0100 Subject: [PATCH] fix: Add missing punctuation in command description --- .../kotlin/app/revanced/cli/command/utility/UtilityCommand.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/app/revanced/cli/command/utility/UtilityCommand.kt b/src/main/kotlin/app/revanced/cli/command/utility/UtilityCommand.kt index b558fdc..7e01a53 100644 --- a/src/main/kotlin/app/revanced/cli/command/utility/UtilityCommand.kt +++ b/src/main/kotlin/app/revanced/cli/command/utility/UtilityCommand.kt @@ -4,7 +4,7 @@ import picocli.CommandLine @CommandLine.Command( name = "utility", - description = ["Commands for utility purposes"], + description = ["Commands for utility purposes."], subcommands = [InstallCommand::class, UninstallCommand::class], ) internal object UtilityCommand