Skip to content

Commit a37760b

Browse files
Fix typos
1 parent c566939 commit a37760b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/index.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -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
10371037
creates the middleware function, then we use an Integrant ref to add
10381038
that 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
17571757
we deploy, it's often useful to run a subset.
17581758

17591759
We can specify which keys to run with the `--keys` option. This will
@@ -1837,7 +1837,7 @@ that looks like this:
18371837
----
18381838

18391839
In 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
18411841
environment. In the example below, the server port number is pulled from
18421842
the `PORT` environment variable.
18431843

@@ -1993,7 +1993,7 @@ the host machine's port 3000 so you can access your application at:
19931993
This 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
19971997
trying to update the database at once.
19981998

19991999
In order to run the migrations, you'll need to run Duct in your

0 commit comments

Comments
 (0)