Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
knowlecules committed Jul 25, 2012
1 parent 80502ca commit 50cd1d4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ Accept a DELETE request with parameters defined in the path and with multiple re
routes('/there/:where?here_name={here_name}&user={user}') routes('/there/:where?here_name={here_name}&user={user}')
('delete', function(req, res, params){ ('delete', function(req, res, params){
function(){ function(){
alert("You're deleting:" + params.where + " where here_name is " + params.here_name + ", for user: " + params.user) alert("You're deleting:" + params.where + " where here_name is " + req.query.here_name
+ ", for user: " + req.query.user)
} }
}); });
``` ```
Expand Down

0 comments on commit 50cd1d4

Please sign in to comment.