Fixed typo in middleware guide.

This commit is contained in:
Jon Cox 2017-02-12 21:05:14 +00:00 committed by GitHub
parent 385560687a
commit 28ca0cb04f
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ currentMenu: guide-middleware
Middleware is an essential part of any modern web framework. It allows you to modify requests and responses as they pass between the client and your server.
You can imagine middleware as a chain of logic connection your server to the client requesting your web app.
You can imagine middleware as a chain of logic connecting your server to the client requesting your web app.
## Basic