From 1dd67de72f592ac3f265c759c6db35413483b71a Mon Sep 17 00:00:00 2001 From: Michael K Date: Wed, 26 Nov 2014 16:10:39 +0100 Subject: [PATCH] Fixed typo --- feed.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/feed.go b/feed.go index 0093c9c..9ff5cd2 100644 --- a/feed.go +++ b/feed.go @@ -104,7 +104,7 @@ type Feed struct { // New is a helper function to stay semi-compatible with // the old code. Includes the database handler to ensure // that this approach is functionally identical to the -// old databse/handlers version. +// old database/handlers version. func New(cachetimeout int, enforcecachelimit bool, ch ChannelHandlerFunc, ih ItemHandlerFunc) *Feed { db := NewDatabase() f := NewWithHandlers(cachetimeout, enforcecachelimit, NewDatabaseChannelHandler(db, ch), NewDatabaseItemHandler(db, ih))