Skip to content
This repository was archived by the owner on Jan 29, 2020. It is now read-only.

Commit 2a4f9c4

Browse files
committed
Fix some typos
1 parent 995c4b0 commit 2a4f9c4

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

doc/book/cookbook/autowiring-routes-and-pipelines.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# How can I autowire routes and pipelines?
22

3-
Expressive 2.0 switches to _programmatic_ piplines and routes, versus
3+
Expressive 2.0 switches to _programmatic_ pipelines and routes, versus
44
_configuration-driven_ pipelines and routing. One drawback is that with
55
configuration-driven approaches, users could provide configuration via a module
66
`ConfigProvider`, and automatically expose new pipeline middleware or routes;

doc/book/features/container/delegator-factories.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ supported by Expressive.
1010
_Delegator factories_ accept the following arguments:
1111

1212
- The container itself;
13-
- The name of the service whose creation is being decrorated;
13+
- The name of the service whose creation is being decorated;
1414
- A callback that will produce the service being decorated.
1515

1616
As an example, let's say we have a `UserRepository` class that composes some sort of

doc/book/getting-started/features.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ middleware prevents any middleware attached later from executing.
169169
You can attach middleware manually, in which case the pipeline is executed in
170170
the order of attachment, or use configuration. When you use configuration, you
171171
will specify a priority integer to dictate the order in which middleware should
172-
be attached. Middleware specifying high integer prioritiess are attached (and
172+
be attached. Middleware specifying high integer priorities are attached (and
173173
thus executed) earlier, while those specifying lower and/or negative integers
174174
are attached later. The default priority is 1.
175175
@@ -217,7 +217,7 @@ will execute in one of two conditions:
217217
- routed middleware called on the next middleware instead of returning a response.
218218
219219
As such, the largest use case for such middleware is to provide a "default"
220-
error response for your application, ucually as an HTTP 404 Not Found response.
220+
error response for your application, usually as an HTTP 404 Not Found response.
221221
222222
The main points to remember are:
223223

doc/book/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ framework for PHP, with the following features:
1919
[whoops](https://github.com/filp/whoops) for debugging purposes.
2020
- Nested middleware applications. Write an application, and compose it later
2121
in another, optionally under a separate subpath.
22-
- [Simplfied installation](getting-started/skeleton.md). Our custom
22+
- [Simplified installation](getting-started/skeleton.md). Our custom
2323
[Composer](https://getcomposer.org)-based installer prompts you for your
2424
initial stack choices, giving you exactly the base you want to start from.
2525

0 commit comments

Comments
 (0)