From 4b5ef85f2904d212a0bb8a571a5d0f5b8aa4ea1e Mon Sep 17 00:00:00 2001 From: frank Date: Thu, 5 Nov 2015 10:13:07 +0800 Subject: [PATCH] correct a spelling error : appropriately --- docs/guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide.md b/docs/guide.md index d8b9d3f..5c870d6 100644 --- a/docs/guide.md +++ b/docs/guide.md @@ -58,7 +58,7 @@ app.use(function *(next){ 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 -"downstream" middleware everything would function appropritaely, however it would no longer conform +"downstream" middleware everything would function appropriately, however it would no longer conform to this behaviour. For example this would be fine: