Skip to content

Commit

Permalink
fixed indentation issue
Browse files Browse the repository at this point in the history
  • Loading branch information
kaizenpack committed Jun 13, 2012
1 parent ae046f3 commit f792d7a
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2217,17 +2217,17 @@ everyauth.smarterer
})
.redirectPath('/');

var routes = function (app) {
// Define your routes here
};
var routes = function (app) {
// Define your routes here
};

connect(
connect.bodyParser()
, connect.cookieParser()
, connect.session({secret: 'whodunnit'})
, everyauth.middleware()
, connect.router(routes);
).listen(3000);
connect(
connect.bodyParser()
, connect.cookieParser()
, connect.session({secret: 'whodunnit'})
, everyauth.middleware()
, connect.router(routes);
).listen(3000);
```
Expand Down

0 comments on commit f792d7a

Please sign in to comment.