Skip to content

Commit

Permalink
Fix tyops in help text (#353)
Browse files Browse the repository at this point in the history
  • Loading branch information
drpatelh committed Oct 31, 2023
1 parent bac27c7 commit d12c24e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public abstract class AbstractAddCmd extends AbstractApiCmd {
@Option(names = {"--wait"}, description = "Wait until given status or fail. Valid options: ${COMPLETION-CANDIDATES}.")
public ComputeEnvStatus wait;

@Option(names = {"--labels"}, description = "List of labels seperated by coma.", split = ",", converter = Label.ResourceLabelsConverter.class)
@Option(names = {"--labels"}, description = "Comma-separated list of labels.", split = ",", converter = Label.ResourceLabelsConverter.class)
public List<Label> labels;

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

public class LabelsOptionalOptions {

@CommandLine.Option(names = {"--labels"}, split = ",", description = "List of labels seperated by coma.", converter = Label.LabelConverter.class)
@CommandLine.Option(names = {"--labels"}, split = ",", description = "Comma-separated list of labels.", converter = Label.LabelConverter.class)
public List<Label> labels = null;

}
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class LabelsSubcmdOptions {
@CommandLine.Mixin
public WorkspaceOptionalOptions workspace;

@CommandLine.Parameters(split = ",", description = "List of labels seperated by coma.", converter = Label.LabelConverter.class)
@CommandLine.Parameters(split = ",", description = "Comma-separated list of labels.", converter = Label.LabelConverter.class)
private List<Label> labels;
@CommandLine.Option(names = "--no-create", description = "Assign labels without creating the ones which were not found.")
private boolean noCreate;
Expand Down

0 comments on commit d12c24e

Please sign in to comment.