Fix typos

This commit is contained in:
IchBinLeoon 2021-11-20 00:47:52 +01:00
parent 20cdb64f54
commit 56015d3174
3 changed files with 5 additions and 5 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 {