Skip to content

Commit

Permalink
Eschew commas for vars
Browse files Browse the repository at this point in the history
  • Loading branch information
bnoguchi committed Jun 4, 2013
1 parent b04f2ca commit 4db5a4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/modules/everymodule.js
Original file line number Diff line number Diff line change
Expand Up @@ -212,8 +212,8 @@ var everyModule = module.exports = {
// Decorates the app with the routes required of the module
, routeApp: function (app) {
if (this.init) this.init();
var routes = this._routes
, methods = ['get', 'post'];
var routes = this._routes;
var methods = ['get', 'post'];
for (var method in routes) {
for (var routeAlias in routes[method]) {
var path = this[routeAlias]();
Expand Down

0 comments on commit 4db5a4f

Please sign in to comment.