From 4ebbad23f47b4b5058dc094217e0211ff9790177 Mon Sep 17 00:00:00 2001 From: Karsten Gresch Date: Mon, 4 Sep 2017 14:50:26 +0200 Subject: [PATCH] Missing closing round bracket. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0ff613a..edcfeef 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ that's not possible we'll fallback to precompiled binaries. var openalpr = require ("node-openalpr"); function identify (id, path) { - console.log (openalpr.IdentifyLicense (path, function (error, output) { + console.log (openalpr.IdentifyLicense (path, function (error, output)) { var results = output.results; console.log (id +" "+ output.processing_time_ms +" "+ ((results.length > 0) ? results[0].plate : "No results"));