From 9f629c0032f995f3741395380492344f949e0673 Mon Sep 17 00:00:00 2001 From: Jeff Winn <6961614+jeff-winn@users.noreply.github.com> Date: Mon, 10 Jun 2019 03:57:23 -0400 Subject: [PATCH] Fixing documentation issue. (#238) --- 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, }