@@ -1688,14 +1688,14 @@ Note that the server object should not be used to emit application events as its
1688
1688
implementation is designed to fan events out to the various plugin selections and not for
1689
1689
application events.
1690
1690
1691
- When provided (as listed below) the ` event ` object include :
1691
+ When provided (as listed below) the ` event ` object includes :
1692
1692
1693
1693
- ` timestamp ` - the event timestamp.
1694
1694
- ` request ` - if the event relates to a request, the ` request id ` .
1695
1695
- ` server ` - if the event relates to a server, the ` server.info.uri ` .
1696
1696
- ` tags ` - an array of tags (e.g. ` ['error', 'http'] ` ).
1697
1697
- ` data ` - optional event-specific information.
1698
- - ` internal ` - ` true ` is the event was generated internally by the framework.
1698
+ - ` internal ` - ` true ` if the event was generated internally by the framework.
1699
1699
1700
1700
The ` 'log' ` event includes the ` event ` object and a ` tags ` object (where each tag is a key with the
1701
1701
value ` true ` ):
@@ -1976,7 +1976,7 @@ server.route({ method: 'GET', path: '/user', config: user });
1976
1976
1977
1977
#### Route options
1978
1978
1979
- Each route can be customize to change the default behavior of the request lifecycle using the
1979
+ Each route can be customized to change the default behavior of the request lifecycle using the
1980
1980
following options:
1981
1981
- ` app ` - application-specific configuration. Should not be used by [ plugins] ( #plugins ) which
1982
1982
should use ` plugins[name] ` instead.
@@ -3413,5 +3413,5 @@ var handler = function (request, reply) {
3413
3413
};
3414
3414
```
3415
3415
3416
- Changing to a permanent or non-rewriterable redirect is also available see
3416
+ Changing to a permanent or non-rewritable redirect is also available see
3417
3417
[ response object redirect] ( #response-object-redirect ) for more information.
0 commit comments