From c41502040e4e4f2997e64053b2b7ba5da5df7e72 Mon Sep 17 00:00:00 2001 From: Daan Nijkamp Date: Fri, 1 Apr 2016 14:09:14 +0200 Subject: [PATCH] Add missing semicolon --- Readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Readme.md b/Readme.md index 0cffc8f..7092343 100644 --- a/Readme.md +++ b/Readme.md @@ -25,7 +25,7 @@ app.oauth = new OAuthServer({ }); app.use(bodyParser.json()); -app.use(bodyparser.urlencoded({ extended: false })) +app.use(bodyparser.urlencoded({ extended: false })); app.use(app.oauth.authorise()); app.use(function(req, res) {