summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJasper Van der Jeugt <jaspervdj@gmail.com>2011-02-28 16:13:53 +0100
committerJasper Van der Jeugt <jaspervdj@gmail.com>2011-02-28 16:13:53 +0100
commitd016106572b2449328b4f2151d32aec6e18f1d1c (patch)
tree15504e1e774fdea5d9ecd5cf83a4bbbe1e0faf8e /examples
parentb930d3b52b024e6f3673b91c790f6d0d47c68d55 (diff)
downloadhakyll-d016106572b2449328b4f2151d32aec6e18f1d1c.tar.gz
Typo fixes by simon meier
Diffstat (limited to 'examples')
-rw-r--r--examples/hakyll/tutorial.markdown12
1 files changed, 6 insertions, 6 deletions
diff --git a/examples/hakyll/tutorial.markdown b/examples/hakyll/tutorial.markdown
index 7a50f6d..9ee6066 100644
--- a/examples/hakyll/tutorial.markdown
+++ b/examples/hakyll/tutorial.markdown
@@ -10,7 +10,7 @@ anyone still care about a static website?
- Static websites are fast, because it's simply files served directly from the
hard disk.
-- Static websites are secure. Nobody has even found an SQL injection in static
+- Static websites are secure. Nobody has ever found an SQL injection in static
pages.
- Static websites are easy to deploy. Just copy them to your webhost using
(S)FTP/rsync/scp and you are done. They work on all webhosts: no CGI or extra
@@ -128,11 +128,11 @@ route "css/*" idRoute
~~~~~
Apart from specifying where the items should go (using `route`), we also have to
-specify *how* the need to be compiled. This is done using the `compile`
-function. As second argument, it takes a `Compiler`. These compilers can consist
-of very complicated constructions, but Hakyll also provides a number of good
-default compilers. The `compressCssCompiler` compiler will simply compress the
-CSS found in the files.
+specify *how* they need to be compiled. This is done using the `compile`
+function. It takes a `Compiler` as its second argument. These compilers can
+consist of very complicated constructions, but Hakyll also provides a number of
+good default compilers. The `compressCssCompiler` compiler will simply compress
+the CSS found in the files.
~~~~~{.haskell}
compile "css/*" compressCssCompiler