diff options
-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? |