diff options
author | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2010-09-01 10:59:07 +0200 |
---|---|---|
committer | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2010-09-01 10:59:07 +0200 |
commit | 7848e95a799e933becd8a12396b97e0e47aea252 (patch) | |
tree | 430fa207b48ce026d80b8a2414f99ecb5373e409 /examples | |
parent | 490162e277a1db52b5e7d9f091b4609a4e6b66b4 (diff) | |
download | hakyll-7848e95a799e933becd8a12396b97e0e47aea252.tar.gz |
Fix another parentheses mismatch
Diffstat (limited to 'examples')
-rw-r--r-- | examples/hakyll/tutorials/part05.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/hakyll/tutorials/part05.markdown b/examples/hakyll/tutorials/part05.markdown index 4d52a32..be71714 100644 --- a/examples/hakyll/tutorials/part05.markdown +++ b/examples/hakyll/tutorials/part05.markdown @@ -80,7 +80,7 @@ allows us to create a more specific `Context`. ~~~~~{.haskell} createCustomPage :: FilePath - -> [(String, Either String (HakyllAction () String)] + -> [(String, Either String (HakyllAction () String))] -> HakyllAction () Context ~~~~~ |