make help text consistent

This commit is contained in:
filifa 2024-07-28 21:34:11 -05:00
parent fc298fd72a
commit 75f0d7652e
2 changed files with 4 additions and 4 deletions

View File

@ -76,8 +76,8 @@ func schedule(cmd *cobra.Command, args []string) {
// scheduleCmd represents the schedule command // scheduleCmd represents the schedule command
var scheduleCmd = &cobra.Command{ var scheduleCmd = &cobra.Command{
Use: "schedule", Use: "schedule",
Short: "Retrieve daily schedules", Short: "Fetch daily schedules",
Long: `Retrieve a day's schedule for the whole league or a specific team.`, Long: `Fetch a day's schedule for the whole league or a specific team.`,
Args: cobra.NoArgs, Args: cobra.NoArgs,
Run: schedule, Run: schedule,
} }

View File

@ -41,8 +41,8 @@ func standings(cmd *cobra.Command, args []string) {
// standingsCmd represents the standings command // standingsCmd represents the standings command
var standingsCmd = &cobra.Command{ var standingsCmd = &cobra.Command{
Use: "standings -l [league]", Use: "standings -l [league]",
Short: "Retrieve league standings", Short: "Fetch league standings",
Long: `Retrieve league standings`, Long: `Fetch league standings`,
Args: cobra.NoArgs, Args: cobra.NoArgs,
Run: standings, Run: standings,
} }