From df43c009a1ffe3a253e0d20857da74f2a52e9ae1 Mon Sep 17 00:00:00 2001 From: Pradeep Kumar Tippa Date: Tue, 12 Mar 2019 11:25:32 +0530 Subject: [PATCH] Updated README with small code fix. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fad47f2..8d65e7f 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ To upgrade your application using loopback-explorer version 1.x, just replace var explorer = require('loopback-component-explorer'); // Module was loopback-explorer in v. 2.0.1 and earlier // v1.x - does not work anymore -app.use('/explorer', explorer(app, options); +app.use('/explorer', explorer(app, options)); // v2.x app.use('/explorer', explorer.routes(app, options)); ```