From f0b88ee676e5e98367575b96d0bf5d6628b98218 Mon Sep 17 00:00:00 2001 From: Rob Greene Date: Sat, 15 Jan 2022 20:11:07 -0600 Subject: [PATCH] Changing the format of the `convert` command help. --- .../github/applecommander/acx/command/ConvertCommand.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/cli-acx/src/main/java/io/github/applecommander/acx/command/ConvertCommand.java b/app/cli-acx/src/main/java/io/github/applecommander/acx/command/ConvertCommand.java index eee77ba..8e4281d 100644 --- a/app/cli-acx/src/main/java/io/github/applecommander/acx/command/ConvertCommand.java +++ b/app/cli-acx/src/main/java/io/github/applecommander/acx/command/ConvertCommand.java @@ -9,9 +9,9 @@ import picocli.CommandLine.Command; import picocli.CommandLine.Option; import picocli.CommandLine.Parameters; -@Command(name = "convert", description = { - "Uncompress a ShrinkIt or Binary II file; ", - "or convert a DiskCopy 4.2 image into a ProDOS disk image." }) +@Command(name = "convert", description = + "Uncompress a ShrinkIt or Binary II file; " + + "or convert a DiskCopy 4.2 image into a ProDOS disk image.") public class ConvertCommand extends ReusableCommandOptions { @Option(names = { "-d", "--disk" }, description = "Image to create [$ACX_DISK_NAME].", required = true, defaultValue = "${ACX_DISK_NAME}")