From 6265f7fc0d58433c508c6fb3671c09b77528869f Mon Sep 17 00:00:00 2001 From: filifa Date: Mon, 11 Aug 2025 20:45:50 -0400 Subject: [PATCH] set description --- cmd/root.go | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/cmd/root.go b/cmd/root.go index 1ca5506..8e3edc6 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -25,13 +25,8 @@ import ( // rootCmd represents the base command when called without any subcommands var rootCmd = &cobra.Command{ Use: "mathtools", - Short: "A brief description of your application", - Long: `A longer description that spans multiple lines and likely contains -examples and usage of using your application. For example: - -Cobra is a CLI library for Go that empowers applications. -This application is a tool to generate the needed files -to quickly create a Cobra application.`, + Short: "A collection of mathematical algorithms", + Long: `A collection of mathematical algorithms.`, // Uncomment the following line if your bare application // has an action associated with it: // Run: func(cmd *cobra.Command, args []string) { }, @@ -55,5 +50,4 @@ func init() { // Cobra also supports local flags, which will only run // when this action is called directly. - rootCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle") }