summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--core/structs.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 7f8678e..084e08d 100644
--- a/README.md
+++ b/README.md
@@ -30,7 +30,7 @@ See `comitium help` for basic usage. For more advanced usage, see
There's many gemini aggregators out there, and yet not one does everything I
want it to. I want an aggregator that:
-1. works with gemini (and possibly gopher)
+1. works with gemini (and possibly gopher & http)
2. supports atom (and possibly rss & json)
3. supports gemini feeds
4. can watch for page changes (and possibly watch for new gemtext headers as
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"`
}