Skip to content

Commit 1967071

Browse files
committed
Fixed inline help typos
Fix #55
1 parent 4379a60 commit 1967071

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

commands/core/download.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ func initDownloadCommand() *cobra.Command {
3535
Short: "Downloads one or more cores and corresponding tool dependencies.",
3636
Long: "Downloads one or more cores and corresponding tool dependencies.",
3737
Example: "" +
38-
" " + commands.AppName + "core download arduino:samd # to download the latest version of arduino SAMD core.\n" +
39-
" " + commands.AppName + "core download arduino:samd=1.6.9 # for a specific version (in this case 1.6.9).",
38+
" " + commands.AppName + " core download arduino:samd # to download the latest version of arduino SAMD core.\n" +
39+
" " + commands.AppName + " core download arduino:samd=1.6.9 # for a specific version (in this case 1.6.9).",
4040
Args: cobra.MinimumNArgs(1),
4141
Run: runDownloadCommand,
4242
}

commands/core/list.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ func initListCommand() *cobra.Command {
3131
Use: "list",
3232
Short: "Shows the list of installed platforms.",
3333
Long: "Shows the list of installed platforms.",
34-
Example: " " + commands.AppName + "core list",
34+
Example: " " + commands.AppName + " core list",
3535
Args: cobra.NoArgs,
3636
Run: runListCommand,
3737
}

0 commit comments

Comments
 (0)