Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.

Commit 5e43b71

Browse files
committed
Improve command descriptions
1 parent 1a5ec82 commit 5e43b71

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

cmd/coder/envs.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ type envsCmd struct {
1414
func (cmd envsCmd) Spec() cli.CommandSpec {
1515
return cli.CommandSpec{
1616
Name: "envs",
17-
Desc: "get a list of active environment",
17+
Desc: "get a list of environments owned by the authenticated user",
1818
}
1919
}
2020

cmd/coder/logout.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ type logoutCmd struct {
1717
func (cmd logoutCmd) Spec() cli.CommandSpec {
1818
return cli.CommandSpec{
1919
Name: "logout",
20-
Desc: "remote local authentication credentials (if any)",
20+
Desc: "remove local authentication credentials (if any)",
2121
}
2222
}
2323

cmd/coder/shell.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ func (cmd *shellCmd) Spec() cli.CommandSpec {
2727
return cli.CommandSpec{
2828
Name: "sh",
2929
Usage: "<env name> [<command [args...]>]",
30-
Desc: "executes a remote command on the environment\nIf no command is specified, the default shell is opened.",
30+
Desc: "execute a remote command on the environment\nIf no command is specified, the default shell is opened.",
3131
RawArgs: true,
3232
}
3333
}

0 commit comments

Comments
 (0)