File tree Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Original file line number Diff line number Diff 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 },
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import (
1010func 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 },
Original file line number Diff line number Diff 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 )
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import (
1313func 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 {
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ import (
1717func 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 {
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ import (
1616func 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 {
You can’t perform that action at this time.
0 commit comments