summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJasper Van der Jeugt <jaspervdj@gmail.com>2010-09-01 10:26:21 +0200
committerJasper Van der Jeugt <jaspervdj@gmail.com>2010-09-01 10:26:21 +0200
commit490162e277a1db52b5e7d9f091b4609a4e6b66b4 (patch)
treeb488e2bdba9dc0f9ac4e6595efd87f50c9107343
parentca19ed80250e51d979c9cb6dc9a737f41fc53bd9 (diff)
downloadhakyll-490162e277a1db52b5e7d9f091b4609a4e6b66b4.tar.gz
Fix 2 tutorial issues (patch by Carl Mäsak)
-rw-r--r--examples/hakyll/tutorials/part05.markdown4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/hakyll/tutorials/part05.markdown b/examples/hakyll/tutorials/part05.markdown
index f21819f..4d52a32 100644
--- a/examples/hakyll/tutorials/part05.markdown
+++ b/examples/hakyll/tutorials/part05.markdown
@@ -102,7 +102,7 @@ signature of `createListing`:
createListing :: FilePath
-> [FilePath]
-> [HakyllAction () Context]
- -> [(String, Either String (HakyllAction () String)]
+ -> [(String, Either String (HakyllAction () String))]
-> HakyllAction () Context
~~~~~
@@ -120,7 +120,7 @@ simple template:
</li>
~~~~~
-We then give a list of @Context@s to render. For our index, these are the 3 last
+We then give a list of `Context`s to render. For our index, these are the 3 last
posts. The last argument of the `createListing` functions lets you specify
additional key-value pairs, like in `createCustomPage`. We use this to set the
title of our page. So, we create our index page using: