chore(cmd/projects): improve help text (#1647)

Christian Rocha created

Change summary

internal/cmd/projects.go | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)

Detailed changes

internal/cmd/projects.go 🔗

@@ -13,14 +13,13 @@ import (
 
 var projectsCmd = &cobra.Command{
 	Use:   "projects",
-	Short: "List all tracked project directories",
-	Long: `List all directories where Crush has been used.
-This includes the working directory, data directory path, and last accessed time.`,
+	Short: "List project directories",
+	Long:  "List directories where Crush project data is known to exist",
 	Example: `
 # List all projects in a table
 crush projects
 
-# Output as JSON
+# Output projects data as JSON
 crush projects --json
   `,
 	RunE: func(cmd *cobra.Command, args []string) error {