Skip to content

Commit 31f454f

Browse files
committed
fix: improve short descriptions in CLI commands
1 parent b456182 commit 31f454f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cmd/arduino-app-cli/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ func run(configuration cfg.Configuration) error {
4848
defer func() { _ = servicelocator.CloseDockerClient() }()
4949
rootCmd := &cobra.Command{
5050
Use: "arduino-app-cli",
51-
Short: "A CLI to manage the Arduino Apps",
51+
Short: "A CLI to manage Arduino Apps",
5252
PersistentPreRun: func(cmd *cobra.Command, args []string) {
5353
format, ok := feedback.ParseOutputFormat(format)
5454
if !ok {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ import (
3737

3838
func NewSystemCmd(cfg config.Configuration) *cobra.Command {
3939
cmd := &cobra.Command{
40-
Use: "system",
40+
Use: "system",
4141
Short: "Manage the board’s system configuration",
4242
}
4343

0 commit comments

Comments
 (0)