diff options
author | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2011-06-17 14:35:17 +0200 |
---|---|---|
committer | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2011-06-17 14:35:17 +0200 |
commit | 3674ff8dfa38ca29132cd7404e9e46684fa43946 (patch) | |
tree | b8bfe2d21d36e32afec7157429e52d18fd821ecc /src/Hakyll/Web | |
parent | 36891802e622229c1ebdfecb0f4d6118eed67120 (diff) | |
download | hakyll-3674ff8dfa38ca29132cd7404e9e46684fa43946.tar.gz |
Show and Eq instances for FeedConfiguration
Diffstat (limited to 'src/Hakyll/Web')
-rw-r--r-- | src/Hakyll/Web/Feed.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Hakyll/Web/Feed.hs b/src/Hakyll/Web/Feed.hs index 63ef2c1..27246a2 100644 --- a/src/Hakyll/Web/Feed.hs +++ b/src/Hakyll/Web/Feed.hs @@ -47,7 +47,7 @@ data FeedConfiguration = FeedConfiguration feedAuthorName :: String , -- | Absolute root URL of the feed site (e.g. @http://jaspervdj.be@) feedRoot :: String - } + } deriving (Show, Eq) -- | This is an auxiliary function to create a listing that is, in fact, a feed. -- The items should be sorted on date. The @$timestamp@ field should be set. |