diff options
author | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2010-03-31 15:53:24 +0200 |
---|---|---|
committer | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2010-03-31 15:53:24 +0200 |
commit | 1a8f00e7870a187b3281f93314a9d0f889b3e579 (patch) | |
tree | dadee0bffb0229288785d97a18315ec318e0dad6 /examples | |
parent | 30f191044a1037db33a110cf082785cb41bbe4ec (diff) | |
download | hakyll-1a8f00e7870a187b3281f93314a9d0f889b3e579.tar.gz |
Type fix by minh thu.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/hakyll/tutorials/part02.markdown | 8 |
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? |