diff options
author | Franco Victorio <blamaeda@gmail.com> | 2014-12-25 17:33:22 -0300 |
---|---|---|
committer | Franco Victorio <blamaeda@gmail.com> | 2014-12-25 17:33:22 -0300 |
commit | 85e8b98ea16de916ce62ec9292259e5987234c51 (patch) | |
tree | e65bb02140690886c5efab8420fabc20d441af76 /web | |
parent | bd06ea58830cb1a1bb2b32c140be53feb5ad472a (diff) | |
download | hakyll-85e8b98ea16de916ce62ec9292259e5987234c51.tar.gz |
Fix little grammar error in tutorial 3
Diffstat (limited to 'web')
-rw-r--r-- | web/tutorials/03-rules-routes-compilers.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/tutorials/03-rules-routes-compilers.markdown b/web/tutorials/03-rules-routes-compilers.markdown index fbaa377..4130a86 100644 --- a/web/tutorials/03-rules-routes-compilers.markdown +++ b/web/tutorials/03-rules-routes-compilers.markdown @@ -36,7 +36,7 @@ match "css/*" $ do ``` -This is a declarative DSL: the order in which you write the rules make little +This is a declarative DSL: the order in which you write the rules makes little difference, Hakyll will use dependency tracking to determine the correct order. We group the different rules using `match`. The first argument for `match` is a |