Changing the format of the `convert` command help.

This commit is contained in:
Rob Greene 2022-01-15 20:11:07 -06:00
parent 52f6bae8bc
commit f0b88ee676
1 changed files with 3 additions and 3 deletions

View File

@ -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}")