From 4f9ef8cdbbc88c5302be95e0e67fd78ebbfa9dd2 Mon Sep 17 00:00:00 2001
From: styee <19558839+styee@users.noreply.github.com>
Date: Fri, 7 Mar 2025 06:53:22 -0800
Subject: [PATCH] Update command.go (#2248)

Fix spelling in the help output.

topcis -> topics
---
 command.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/command.go b/command.go
index 140fbfdf..4794e5eb 100644
--- a/command.go
+++ b/command.go
@@ -2025,7 +2025,7 @@ func defaultUsageFunc(w io.Writer, in interface{}) error {
 		fmt.Fprint(w, trimRightSpace(c.InheritedFlags().FlagUsages()))
 	}
 	if c.HasHelpSubCommands() {
-		fmt.Fprintf(w, "\n\nAdditional help topcis:")
+		fmt.Fprintf(w, "\n\nAdditional help topics:")
 		for _, subcmd := range c.Commands() {
 			if subcmd.IsAdditionalHelpTopicCommand() {
 				fmt.Fprintf(w, "\n  %s %s", rpad(subcmd.CommandPath(), subcmd.CommandPathPadding()), subcmd.Short)