Merge remote-tracking branch 'origin/master'

This commit is contained in:
bytedream 2021-12-01 16:41:14 +01:00
commit 3aea319b7c
4 changed files with 6 additions and 6 deletions

View file

@ -19,7 +19,7 @@ func (mlbd MovieListingsByDuration) Less(i, j int) bool {
return mlbd[i].DurationMS < mlbd[j].DurationMS
}
// EpisodesByDuration episodes by their duration
// EpisodesByDuration sorts episodes by their duration
type EpisodesByDuration []*crunchyroll.Episode
func (ebd EpisodesByDuration) Len() int {
@ -32,7 +32,7 @@ func (ebd EpisodesByDuration) Less(i, j int) bool {
return ebd[i].DurationMS < ebd[j].DurationMS
}
// FormatsByResolution sort formats after their resolution
// FormatsByResolution sorts formats after their resolution
type FormatsByResolution []*crunchyroll.Format
func (fbr FormatsByResolution) Len() int {