summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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: