summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Hakyll/Web/Template.hs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Hakyll/Web/Template.hs b/src/Hakyll/Web/Template.hs
index 8c66309..56f5da9 100644
--- a/src/Hakyll/Web/Template.hs
+++ b/src/Hakyll/Web/Template.hs
@@ -65,7 +65,7 @@
-- with item @i@, interpolate it, and join the resulting list with
-- @,@.
--
--- More concrete example one may consider is the following. Given the
+-- Another concrete example one may consider is the following. Given the
-- context
--
-- > listField "things" (field "thing" (return . itemBody))
@@ -103,7 +103,7 @@
-- The result of rendering
--
-- > <p>
--- > $partial(\"test.html\")$
+-- > $partial("test.html")$
-- > </p>
--
-- is the same as the result of rendering
@@ -112,7 +112,7 @@
-- > <b>$key$</b>
-- > </p>
--
--- That is, @$partial$@ is equivalent to just copying and pasting
+-- That is, calling @$partial$@ is equivalent to just copying and pasting
-- template code.
--