summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJasper Van der Jeugt <jaspervdj@gmail.com>2010-03-31 15:53:24 +0200
committerJasper Van der Jeugt <jaspervdj@gmail.com>2010-03-31 15:53:24 +0200
commit1a8f00e7870a187b3281f93314a9d0f889b3e579 (patch)
treedadee0bffb0229288785d97a18315ec318e0dad6
parent30f191044a1037db33a110cf082785cb41bbe4ec (diff)
downloadhakyll-1a8f00e7870a187b3281f93314a9d0f889b3e579.tar.gz
Type fix by minh thu.
-rw-r--r--examples/hakyll/tutorials/part02.markdown8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/hakyll/tutorials/part02.markdown b/examples/hakyll/tutorials/part02.markdown
index f8681a7..3df3c1f 100644
--- a/examples/hakyll/tutorials/part02.markdown
+++ b/examples/hakyll/tutorials/part02.markdown
@@ -71,10 +71,10 @@ runHakyllActionIfNeeded test
## Aso, the point emerges
The `runHakyllActionIfNeeded` suggests why we use arrows. `HakyllAction` is more
-than just a function, it also tracks dependencies. This Hakyll to only execute
-our functions when it is really needed. In this particular case, `test` would
-only be executed if either `test.markdown` or `template.html` were recently
-changed.
+than just a function, it also tracks dependencies. This causes Hakyll to only
+execute our functions when it is really needed. In this particular case, `test`
+would only be executed if either `test.markdown` or `template.html` were
+recently changed.
## So what's renderChain then?