From 2b5233d628f48d8e0c702d020a9ea68897c65122 Mon Sep 17 00:00:00 2001 From: Pavel Shum Date: Wed, 30 Mar 2016 21:01:32 +0800 Subject: [PATCH] Update README.md fixing typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 654deb4..0a8bed4 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ It also named parameters for route syntax alert("format: " + req.params.format); }); -LeviRoutes can also intercept POST requests via forms, the framework will intercept all submits, and naturally let through requests that don't match the path, whilst firing your callback if there is a mathc +LeviRoutes can also intercept POST requests via forms, the framework will intercept all submits, and naturally let through requests that don't match the path, whilst firing your callback if there is a match app.post("/:category", function(req) { alert("posting form: In Category ", req.params.category);