From 0bc7a93fcf0af050ae9b07a63e5ed4c51c52a29c Mon Sep 17 00:00:00 2001 From: Tanner Nelson Date: Wed, 2 Nov 2016 12:47:16 -0400 Subject: [PATCH] fix typos --- guide/middleware.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/middleware.md b/guide/middleware.md index 2c8fd00a..a1b2dcd4 100644 --- a/guide/middleware.md +++ b/guide/middleware.md @@ -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)