summaryrefslogtreecommitdiff
path: root/core/structs.go
diff options
context:
space:
mode:
authornytpu <alex@nytpu.com>2021-03-17 08:41:42 -0600
committernytpu <alex@nytpu.com>2021-03-17 08:41:42 -0600
commit1389fc8d6ee89decc49a510557ab43cbd64c5b1d (patch)
tree225d4e79f812c28dbb96efcc548aa8ce8700411c /core/structs.go
parent07d85c0bfc82b5df7366d3810c95aa8b959837a4 (diff)
fix comment and update readme
Diffstat (limited to 'core/structs.go')
-rw-r--r--core/structs.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/structs.go b/core/structs.go
index eec1473..a97fc74 100644
--- a/core/structs.go
+++ b/core/structs.go
@@ -34,7 +34,7 @@ type jsonData struct {
type Feed struct {
Title string `json:"title,omitempty"`
Link *url.URL `json:"link,omitempty"` // link to the human-readable page for the feed. same as FeedLink for gemini feeds.
- FeedLink *url.URL `json:"feedlink,omitempty"` // link to the feed itself. if empty, use Link instead.
+ FeedLink *url.URL `json:"feedlink,omitempty"` // link to the feed itself.
Updated time.Time `json:"updated,omitempty"`
Items []*Item `json:"items,omitempty"`
}