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

Commit ee6a94d

Browse files
committed
Merge pull request #230 from ka7/feature/spelling
spelling fixes
2 parents ed5c45c + 1b24afe commit ee6a94d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

doc/book/quick-start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ classes for you to start with:
102102
- `Zend\Mvc\Controller\AbstractRestfulController` introspects the `Request` to
103103
determine what HTTP method was used, and calls a method according to that.
104104
- `GET` will call either the `getList()` method, or, if an "id" was matched
105-
during routing, the `get()` method (with that identifer value).
105+
during routing, the `get()` method (with that identifier value).
106106
- `POST` will call the `create()` method, passing in the `$_POST` values.
107107
- `PUT` expects an "id" to be matched during routing, and will call the
108108
`update()` method, passing in the identifier, and any data found in the raw

doc/book/routing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -635,7 +635,7 @@ return [
635635
'type' => 'Zend\Mvc\Router\Http\Hostname',
636636
'options' => [
637637
'route' => ':4th.[:3rd.]:2nd.:1st', // domain levels from right to left
638-
'contraints' => [
638+
'constraints' => [
639639
'4th' => 'modules',
640640
'3rd' => '.*?', // optional 3rd level domain such as .ci, .dev or .test
641641
'2nd' => 'zendframework',
@@ -663,7 +663,7 @@ return [
663663
'type' => 'Zend\Mvc\Router\Http\Hostname',
664664
'options' => [
665665
'route' => ':4th.[:3rd.]:2nd.:1st', // domain levels from right to left
666-
'contraints' => [
666+
'constraints' => [
667667
'4th' => 'packages',
668668
'3rd' => '.*?', // optional 3rd level domain such as .ci, .dev or .test
669669
'2nd' => 'zendframework',

doc/book/services.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ services configured out of the box.
236236
creates a `Zend\Http\PhpEnvironment\Response`.
237237

238238
- `Router`, mapping to `Zend\Mvc\Service\RouterFactory`. If in a console
239-
enviroment, it proxies to the `ConsoleRouter` service; otherwise, it proxies
239+
environment, it proxies to the `ConsoleRouter` service; otherwise, it proxies
240240
to the `HttpRouter` service.
241241

242242
- `RoutePluginManager`, mapping to `Zend\Mvc\Service\RoutePluginManagerFactory`.

0 commit comments

Comments
 (0)