fix weird variable name in example

Esse commit está contido em:
TJ Holowaychuk
2013-11-26 23:39:35 -08:00
commit edd39fb194
+2 -2
Ver Arquivo
@@ -29,9 +29,9 @@ app.get('/', function(req, res){
// and make things a bit more declarative:
function format(path) {
var requestHandler = require(path);
var obj = require(path);
return function(req, res){
res.format(requestHandler);
res.format(obj);
}
}