From 4978ec7834e15c582326be0e5c2e3b2fa16b4abc Mon Sep 17 00:00:00 2001 From: filifa Date: Sat, 6 Sep 2025 00:43:51 -0400 Subject: [PATCH] add more help text --- cmd/pell.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/pell.go b/cmd/pell.go index 9124071..322a223 100644 --- a/cmd/pell.go +++ b/cmd/pell.go @@ -62,7 +62,7 @@ func pell(cmd *cobra.Command, args []string) { var pellCmd = &cobra.Command{ Use: "pell", Short: "Find solutions to a Pell equation", - Long: `Find solutions to a Pell equation.`, + Long: `Find solutions to a Pell equation x^2 - dy^2 = 1.`, Run: pell, }