diff --git a/lib/application.js b/lib/application.js index 3bbb60c..8bcb0ab 100644 --- a/lib/application.js +++ b/lib/application.js @@ -77,19 +77,21 @@ app.use = function(fn){ }; /** - * Mixin an app's context with your own object. + * Mixin `obj` to this app's context. * - * app.context({ - * get something(){ - * return 'hi'; - * }, - * set something(val){ - * this._something = val; - * }, - * render: function(){ - * this.body = ''; - * } - * }) + * app.context({ + * get something(){ + * return 'hi'; + * }, + * + * set something(val){ + * this._something = val; + * }, + * + * render: function(){ + * this.body = ''; + * } + * }); * * @param {Object} obj * @return {Application} self