diff options
author | John Tyree <johntyree@gmail.com> | 2013-01-27 19:36:01 +0100 |
---|---|---|
committer | John Tyree <johntyree@gmail.com> | 2013-01-27 19:36:01 +0100 |
commit | 3572779568a8a7131beb88ca6e47108f4ab489c5 (patch) | |
tree | 859840c9d91033a4378730b3ff16bb4626b81845 | |
parent | 8e473797036cdc8b088285820859dc2894a85995 (diff) | |
download | hakyll-3572779568a8a7131beb88ca6e47108f4ab489c5.tar.gz |
Fix little typo in tutorial 03.
-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 d587ab4..fbaa377 100644 --- a/web/tutorials/03-rules-routes-compilers.markdown +++ b/web/tutorials/03-rules-routes-compilers.markdown @@ -61,7 +61,7 @@ this will become clear soon. The real question here is why we use `create` instead of `match`. The answer is simple: there is no `archive.html` file in our project directory! -So if we were to use `match`, no a file would be matched, and hence, nothing +So if we were to use `match`, no file would be matched, and hence, nothing would appear in the output directory. `create`, however, ensures the items listed are always produced. |