@@ -725,7 +725,7 @@ own configuration file, and also have a separate configuration for the
725725{:vars #duct/include "vars.edn"
726726 :system
727727 {:duct.module/logging {}
728- :tutorial.print/hello #duct. include "hello.edn"}}
728+ :tutorial.print/hello #duct/ include "hello.edn"}}
729729----
730730
731731.vars.edn
@@ -1037,7 +1037,7 @@ We add a new key, `:todo.middleware/wrap-headers`, which configures and
10371037creates the middleware function, then we use an Integrant ref to add
10381038that function to a vector of middleware.
10391039
1040- There three ways to apply middleware:
1040+ There are three ways to apply middleware:
10411041
10421042* Middleware is applied to all requests (via `:middleware`)
10431043* Middleware is applied if any route matches (via `:route-middleware`)
@@ -1753,7 +1753,7 @@ and check the web application at: <http://localhost:3000>
17531753
17541754=== Deployment
17551755
1756- During development we typically run every key int the system, but when
1756+ During development we typically run every key in the system, but when
17571757we deploy, it's often useful to run a subset.
17581758
17591759We can specify which keys to run with the `--keys` option. This will
@@ -1837,7 +1837,7 @@ that looks like this:
18371837----
18381838
18391839In order to run this configuration, you have a main function that loads
1840- in the config file and populates the it with additional values from the
1840+ in the config file and populates it with additional values from the
18411841environment. In the example below, the server port number is pulled from
18421842the `PORT` environment variable.
18431843
@@ -1993,7 +1993,7 @@ the host machine's port 3000 so you can access your application at:
19931993This container is configured to only run keys deriving from
19941994`:duct/daemon` (and those it references). This includes keys like
19951995`:duct.server.http/jetty` provided by the web module. This will exclude
1996- migrations in order avoid multiple containers behind a load balancer all
1996+ migrations in order to avoid multiple containers behind a load balancer all
19971997trying to update the database at once.
19981998
19991999In order to run the migrations, you'll need to run Duct in your
0 commit comments