From 28ca0cb04f99dbdde4f51f3aa63d6cbb36fdc8c0 Mon Sep 17 00:00:00 2001 From: Jon Cox Date: Sun, 12 Feb 2017 21:05:14 +0000 Subject: [PATCH] Fixed typo in middleware guide. --- guide/middleware.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/middleware.md b/guide/middleware.md index de9fa764..b45d6fbd 100644 --- a/guide/middleware.md +++ b/guide/middleware.md @@ -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