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
var scheduleCmd = &cobra.Command{
Use: "schedule",
Short: "Retrieve daily schedules",
Long: `Retrieve a day's schedule for the whole league or a specific team.`,
Short: "Fetch daily schedules",
Long: `Fetch a day's schedule for the whole league or a specific team.`,
Args: cobra.NoArgs,
Run: schedule,
}

View File

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