From a1b6c73da9382de7f00a51af31ac7ec6e19ce954 Mon Sep 17 00:00:00 2001 From: filifa Date: Mon, 11 Aug 2025 20:48:06 -0400 Subject: [PATCH] make use a little more helpful --- cmd/gcd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/gcd.go b/cmd/gcd.go index 46d498a..5d6a207 100644 --- a/cmd/gcd.go +++ b/cmd/gcd.go @@ -44,7 +44,7 @@ func gcd(cmd *cobra.Command, args []string) { // gcdCmd represents the gcd command var gcdCmd = &cobra.Command{ - Use: "gcd", + Use: "gcd N N [N ...]", Short: "Compute the greatest common denominator of a set of numbers", Long: `Compute the greatest common denominator of a set of numbers.`, Args: cobra.MinimumNArgs(2),