Skip to content

Commit fdbae4c

Browse files
committed
cmd/limactl: fix wording
Signed-off-by: Akihiro Suda <[email protected]>
1 parent cac0953 commit fdbae4c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

cmd/limactl/hostagent.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
var hostagentCommand = &cli.Command{
1414
Name: "hostagent",
1515
Usage: "DO NOT EXECUTE MANUALLY",
16-
ArgsUsage: "NAME",
16+
ArgsUsage: "INSTANCE",
1717
Hidden: true,
1818
Flags: []cli.Flag{
1919
&cli.StringFlag{

cmd/limactl/shell.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ import (
1919
var shellCommand = &cli.Command{
2020
Name: "shell",
2121
Usage: "Execute shell in Lima",
22-
ArgsUsage: "[flags] INSTANCE [COMMAND...]",
23-
Description: "`lima` command is provided as an alias for `limactl shell $LIMA_INSTANCE`. $LIMA_INSTANCE defaults to " + DefaultInstanceName + ".\n" +
22+
ArgsUsage: "INSTANCE [COMMAND...]",
23+
Description: "`lima` command is provided as an alias for `limactl shell $LIMA_INSTANCE`. $LIMA_INSTANCE defaults to \"" + DefaultInstanceName + "\".\n" +
2424
"Hint: try --debug to show the detailed logs, if it seems hanging (mostly due to some SSH issue).",
2525
Flags: []cli.Flag{
2626
&cli.StringFlag{

cmd/limactl/start.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
var startCommand = &cli.Command{
2424
Name: "start",
2525
Usage: fmt.Sprintf("Start an instance of Lima. If the instance does not exist, open an editor for creating new one, with name %q", DefaultInstanceName),
26-
ArgsUsage: "[flags] NAME|FILE.yaml",
26+
ArgsUsage: "NAME|FILE.yaml",
2727
Flags: []cli.Flag{
2828
&cli.BoolFlag{
2929
Name: "tty",

0 commit comments

Comments
 (0)