Fix comment

This commit is contained in:
IchBinLeoon 2022-05-29 01:42:24 +02:00
parent 7897da3baf
commit acc6c63ebd

View file

@ -628,7 +628,7 @@ func (c *Crunchyroll) News(topLimit uint, latestLimit uint) (t []*News, l []*New
return t, l, nil
}
// Recommendations returns series and movie recommendations from crunchyroll based on your account within the given limit.
// Recommendations returns series and movie recommendations from crunchyroll based on the currently logged in account within the given limit.
func (c *Crunchyroll) Recommendations(limit uint) (s []*Series, m []*Movie, err error) {
recommendationsEndpoint := fmt.Sprintf("https://beta-api.crunchyroll.com/content/v1/%s/recommendations?n=%d&locale=%s",
c.Config.AccountID, limit, c.Locale)