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 -- -- >

--- > $partial(\"test.html\")$ +-- > $partial("test.html")$ -- >

-- -- is the same as the result of rendering @@ -112,7 +112,7 @@ -- > $key$ -- >

-- --- That is, @$partial$@ is equivalent to just copying and pasting +-- That is, calling @$partial$@ is equivalent to just copying and pasting -- template code. --