From 74c452a93f8135a3b64c0bcb02885cd826eb9612 Mon Sep 17 00:00:00 2001 From: TJ Holowaychuk Date: Mon, 2 Sep 2013 19:18:10 -0700 Subject: [PATCH] docs --- docs/guide.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/guide.md b/docs/guide.md index d9dec92..4d33c2d 100644 --- a/docs/guide.md +++ b/docs/guide.md @@ -53,6 +53,7 @@ app.use(function(next){ 12. Set `X-Response-Time` header field before response 13. Hand off to Koa to handle the response + Note that the final middleware (step __6__) yields to what looks to be nothing - it's actually yielding to a no-op generator within Koa. This is so that every middleware can conform with the same API, and may be placed before or after others. If you removed `yield next;` from the furthest