Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
nrstott committed Dec 9, 2011
1 parent 2d09848 commit ca51958
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -14,15 +14,15 @@ Create the following file:


### app.js ### app.js


var bogart = require("bogart"); var bogart = require('bogart');


var router = bogart.router(); var router = bogart.router();
router.get('/', function(req) { router.get('/', function(req) {
return "hello world"; return "hello world";
}); });


router.get("/:name", function(req) { router.get('/:name', function(req) {
return "hello "+req.params.name; return 'hello '+req.params.name;
}); });


var app = bogart.app(); var app = bogart.app();
Expand Down

0 comments on commit ca51958

Please sign in to comment.