From 6d3193357edca7eab9623498f36554a64b6e3098 Mon Sep 17 00:00:00 2001 From: Jeff Winn <6961614+jeff-winn@users.noreply.github.com> Date: Fri, 7 Jun 2019 21:25:41 -0400 Subject: [PATCH] Fixing documentation issue. --- cli/core/install.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/core/install.go b/cli/core/install.go index 03aec847281..4a06cb8dd0b 100644 --- a/cli/core/install.go +++ b/cli/core/install.go @@ -37,7 +37,7 @@ func initInstallCommand() *cobra.Command { Example: " # download the latest version of arduino SAMD core.\n" + " " + cli.AppName + " core install arduino:samd\n\n" + " # download a specific version (in this case 1.6.9).\n" + - " " + cli.AppName + " core install arduino:samd=1.6.9", + " " + cli.AppName + " core install arduino:samd@1.6.9", Args: cobra.MinimumNArgs(1), Run: runInstallCommand, }