diff options
author | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2010-03-31 13:51:28 +0200 |
---|---|---|
committer | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2010-03-31 13:51:28 +0200 |
commit | 193dc6d3d8d7bca76efd30270bd34ca81a676bf2 (patch) | |
tree | 9b7dc69362c002a1cf1593e5a8de673fa84c9e41 /src | |
parent | d108263907209e2063dbfe46b071b0308b5852c7 (diff) | |
download | hakyll-193dc6d3d8d7bca76efd30270bd34ca81a676bf2.tar.gz |
Updated tutorial about categoryblog.
Diffstat (limited to 'src')
-rw-r--r-- | src/Text/Hakyll/HakyllAction.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Text/Hakyll/HakyllAction.hs b/src/Text/Hakyll/HakyllAction.hs index e12b50b..1310e28 100644 --- a/src/Text/Hakyll/HakyllAction.hs +++ b/src/Text/Hakyll/HakyllAction.hs @@ -70,8 +70,8 @@ runHakyllActionIfNeeded action = do -- | Chain a number of @HakyllAction@ computations. chain :: [HakyllAction a a] -- ^ Actions to chain. -> HakyllAction a a -- ^ Resulting action. -chain [] = id -chain list@(_:_) = foldl1 (>>>) list +chain [] = id +chain list = foldl1 (>>>) list instance Category HakyllAction where id = HakyllAction |