summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJasper Van der Jeugt <jaspervdj@gmail.com>2010-09-01 10:59:07 +0200
committerJasper Van der Jeugt <jaspervdj@gmail.com>2010-09-01 10:59:07 +0200
commit7848e95a799e933becd8a12396b97e0e47aea252 (patch)
tree430fa207b48ce026d80b8a2414f99ecb5373e409
parent490162e277a1db52b5e7d9f091b4609a4e6b66b4 (diff)
downloadhakyll-7848e95a799e933becd8a12396b97e0e47aea252.tar.gz
Fix another parentheses mismatch
-rw-r--r--examples/hakyll/tutorials/part05.markdown2
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
~~~~~