fix typos

This commit is contained in:
Tanner Nelson 2016-11-02 12:47:16 -04:00
parent a2fde4c0f4
commit 0bc7a93fcf
1 changed files with 2 additions and 2 deletions

View File

@ -166,11 +166,11 @@ Then, in the `Config/droplet.json` file, add `my-middleware` to the appropriate
}
```
If the name of the added middleware exists in the `server` array for the loaded configuration, it will be added to the server's middleware when the application boots.
If the name of the added middleware appears in the `server` array for the loaded configuration, it will be added to the server's middleware when the application boots.
Likewise, if the middleware appears in the `client` array for the loaded configuration, it will be added to the client's middleware.
One middleware can be appended to both the Client and the Server, and can be added multiple times. The ordering of middleware is repsected.
One middleware can be appended to both the Client and the Server, and can be added multiple times. The ordering of middleware is respected.
## Extensions (Advanced)