diff --git a/cmd/schedule.go b/cmd/schedule.go index f8e88b7..733ac1b 100644 --- a/cmd/schedule.go +++ b/cmd/schedule.go @@ -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, } diff --git a/cmd/standings.go b/cmd/standings.go index 67a5667..e8feca8 100644 --- a/cmd/standings.go +++ b/cmd/standings.go @@ -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, }