From 33ff439c73a537628a04f62a7f2c5e29cc752004 Mon Sep 17 00:00:00 2001 From: "Paul D. Fernhout" Date: Wed, 7 Feb 2018 00:07:03 -0500 Subject: [PATCH] docs: Fix inconsistent path in router.md variadic routes example (#2084) --- docs/route.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/route.md b/docs/route.md index 712c6845..a883e833 100644 --- a/docs/route.md +++ b/docs/route.md @@ -323,7 +323,7 @@ It's also possible to have variadic routes, i.e. a route with an argument that c ```javascript m.route(document.body, "/edit/pictures/image.jpg", { - "/files/:file...": Edit, + "/edit/:file...": Edit, }) ```