From 1d417cf4e833eee8313dd447d306a746bf1debd8 Mon Sep 17 00:00:00 2001 From: Jeff Winn <6961614+jeff-winn@users.noreply.github.com> Date: Thu, 9 May 2019 20:50:13 -0400 Subject: [PATCH] Fixing documentation issue. --- commands/core/install.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/core/install.go b/commands/core/install.go index 1fc27b41149..cf57f058d47 100644 --- a/commands/core/install.go +++ b/commands/core/install.go @@ -36,7 +36,7 @@ func initInstallCommand() *cobra.Command { Example: " # download the latest version of arduino SAMD core.\n" + " " + commands.AppName + " core install arduino:samd\n\n" + " # download a specific version (in this case 1.6.9).\n" + - " " + commands.AppName + " core install arduino:samd=1.6.9", + " " + commands.AppName + " core install arduino:samd@1.6.9", Args: cobra.MinimumNArgs(1), Run: runInstallCommand, }