summaryrefslogtreecommitdiff
path: root/src/Hakyll/Web/Template.hs
diff options
context:
space:
mode:
authorDaniil Frumin <difrumin@gmail.com>2014-01-19 23:31:40 +0400
committerDaniil Frumin <difrumin@gmail.com>2014-01-19 23:31:40 +0400
commit99c464d08ffc3a946a8afcfd123ad95cdc027061 (patch)
treedaf0d0617234f838e10c3c8a816874805a7d5749 /src/Hakyll/Web/Template.hs
parent60f004347159c0a76d4c547d69c17a463ed785da (diff)
downloadhakyll-99c464d08ffc3a946a8afcfd123ad95cdc027061.tar.gz
Fix escaped quotes + wording
Diffstat (limited to 'src/Hakyll/Web/Template.hs')
-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.
--