From 94f13ba8685dfa498a77a9a9caa8b18e1d40d053 Mon Sep 17 00:00:00 2001 From: Micael Jarniac Date: Mon, 6 Apr 2020 16:29:04 -0300 Subject: [PATCH] Corrected short description of installCommand Changed the short description from "Installs one of more [...]" to "Installs one or more [...]", thus matching the long one. --- cli/lib/install.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/lib/install.go b/cli/lib/install.go index 5ceacc8bfa5..bf35269eadb 100644 --- a/cli/lib/install.go +++ b/cli/lib/install.go @@ -32,7 +32,7 @@ import ( func initInstallCommand() *cobra.Command { installCommand := &cobra.Command{ Use: "install LIBRARY[@VERSION_NUMBER](S)", - Short: "Installs one of more specified libraries into the system.", + Short: "Installs one or more specified libraries into the system.", Long: "Installs one or more specified libraries into the system.", Example: "" + " " + os.Args[0] + " lib install AudioZero # for the latest version.\n" +