From 9552755ea898f17d62ab72f8cf373d37fa6a0c4a Mon Sep 17 00:00:00 2001 From: Charles Crawford III Date: Sat, 12 Jan 2019 07:44:15 -0800 Subject: [PATCH] Add missing , to Versioned Routes docs (#1705) --- docs/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.md b/docs/index.md index d606440e2..05c5e973f 100644 --- a/docs/index.md +++ b/docs/index.md @@ -358,7 +358,7 @@ creation time. Lastly, you can support multiple versions in the API by using an array: ```js -server.get('/hello/:name' restify.plugins.conditionalHandler([ +server.get('/hello/:name', restify.plugins.conditionalHandler([ { version: ['2.0.0', '2.1.0', '2.2.0'], handler: sendV2 } ])); ```