Merge branch 'master' of github.com:koajs/koa

master
TJ Holowaychuk 2013-08-19 18:24:26 -07:00
commit febf14dfca
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ http.createServer(app.callback()).listen(3001);
### app.context(obj)
Each `Application` has its own `Context` instance, meaning you may extend the prototype of one,
and the other will remain untouched with the default prototype. To extend an apps context you may
and the other will remain untouched with the default prototype. To extend an app's context you may
invoke `app.context()` any number of times with an object of extensions:
```js