From a314f2edf7fb125260d3f0675a4331baa8a64f36 Mon Sep 17 00:00:00 2001 From: Andrew Date: Wed, 25 Nov 2015 15:20:58 +0100 Subject: [PATCH 1/2] Just typo fix --- feed.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/feed.go b/feed.go index 26d134e..83cb113 100644 --- a/feed.go +++ b/feed.go @@ -3,7 +3,7 @@ Dependencies: go-pkg-xmlx (http://github.com/jteeuwen/go-pkg-xmlx) This package allows us to fetch Rss and Atom feeds from the internet. - They are parsed into an object tree which is a hyvrid of both the RSS and Atom + They are parsed into an object tree which is a hybrid of both the RSS and Atom standards. Supported feeds are: From cee86af59f2d181b3210bb0d8fc55b36cad654eb Mon Sep 17 00:00:00 2001 From: Andrew Date: Wed, 25 Nov 2015 15:24:57 +0100 Subject: [PATCH 2/2] Fix outdated path in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5d4fd7d..0510400 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ The Feed object supports notifications of new channels and items. This is achieved by passing 2 function handlers to the feeder.New() function. They will be called whenever a feed is updated from the remote source and either a new channel or a new item is found that previously did not exist. -This allows you to easily monitor a feed for changes. See src/feed_test.go for +This allows you to easily monitor a feed for changes. See feed_test.go for an example of how this works. ## DEPENDENCIES