From d6ad9a471bb988b94f994664b9b339bcf432a5dd Mon Sep 17 00:00:00 2001 From: nett_hier <66856670+netthier@users.noreply.github.com> Date: Sun, 24 Oct 2021 03:22:27 +0200 Subject: [PATCH] Fix typos in model/icon.go --- model/icon.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/model/icon.go b/model/icon.go index 5e3bd769..e47fc4a5 100644 --- a/model/icon.go +++ b/model/icon.go @@ -22,10 +22,10 @@ func (i *Icon) DataURL() string { return fmt.Sprintf("%s;base64,%s", i.MimeType, base64.StdEncoding.EncodeToString(i.Content)) } -// Icons represents a list of icon. +// Icons represents a list of icons. type Icons []*Icon -// FeedIcon is a jonction table between feeds and icons +// FeedIcon is a junction table between feeds and icons. type FeedIcon struct { FeedID int64 `json:"feed_id"` IconID int64 `json:"icon_id"`