adding commas to the docs

This commit is contained in:
Jeremy Ashkenas
2010-11-14 15:59:46 -05:00
parent 8ad010ff2f
commit 58e748bd8a

View File

@@ -1283,8 +1283,8 @@ var othello = NYPL.create({
var Workspace = Backbone.Controller.extend({
routes: {
"help": "help" // #help
"search/:query": "search" // #search/kiwis
"help": "help", // #help
"search/:query": "search", // #search/kiwis
"search/:query/p:page": "search" // #search/kiwis/p7
},