Skip to content

Commit 9bc446b

Browse files
authored
fix: correct command description for listing Arduino apps
1 parent 291607b commit 9bc446b

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

cmd/arduino-app-cli/app/list.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ func newListCmd(cfg config.Configuration) *cobra.Command {
2020

2121
cmd := &cobra.Command{
2222
Use: "list",
23-
Short: "List all running Python apps",
23+
Short: "List the Arduino apps",
2424
Run: func(cmd *cobra.Command, args []string) {
2525
listHandler(cmd.Context(), cfg, showBrokenApps)
2626
},

cmd/arduino-app-cli/app/monitor.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
func newMonitorCmd(cfg config.Configuration) *cobra.Command {
1111
return &cobra.Command{
1212
Use: "monitor",
13-
Short: "Monitor the Python app",
13+
Short: "Monitor the Arduino app",
1414
RunE: func(cmd *cobra.Command, args []string) error {
1515
panic("not implemented")
1616
},

cmd/arduino-app-cli/app/new.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ func newCreateCmd(cfg config.Configuration) *cobra.Command {
2424

2525
cmd := &cobra.Command{
2626
Use: "new name",
27-
Short: "Creates a new app",
27+
Short: "Creates a new Arduino App",
2828
Args: cobra.ExactArgs(1),
2929
RunE: func(cmd *cobra.Command, args []string) error {
3030
cobra.MinimumNArgs(1)

cmd/arduino-app-cli/app/restart.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
func newRestartCmd(cfg config.Configuration) *cobra.Command {
1414
cmd := &cobra.Command{
1515
Use: "restart app_path",
16-
Short: "Restart or Start an Arduino app",
16+
Short: "Restart or Start an Arduino App",
1717
Args: cobra.MaximumNArgs(1),
1818
RunE: func(cmd *cobra.Command, args []string) error {
1919
if len(args) == 0 {

cmd/arduino-app-cli/app/start.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717
func newStartCmd(cfg config.Configuration) *cobra.Command {
1818
return &cobra.Command{
1919
Use: "start app_path",
20-
Short: "Start an Arduino app",
20+
Short: "Start an Arduino App",
2121
Args: cobra.MaximumNArgs(1),
2222
RunE: func(cmd *cobra.Command, args []string) error {
2323
if len(args) == 0 {

cmd/arduino-app-cli/app/stop.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616
func newStopCmd(cfg config.Configuration) *cobra.Command {
1717
return &cobra.Command{
1818
Use: "stop app_path",
19-
Short: "Stop an Arduino app",
19+
Short: "Stop an Arduino App",
2020
Args: cobra.MaximumNArgs(1),
2121
RunE: func(cmd *cobra.Command, args []string) error {
2222
if len(args) == 0 {

0 commit comments

Comments
 (0)