From 08f0b59ad8c1dec044ab67d91219a58d3d56ed41 Mon Sep 17 00:00:00 2001 From: George Kobelev Date: Sun, 24 Sep 2017 02:59:10 +0300 Subject: [PATCH] Superfluous bracket in README.md Deleted superfluous bracket --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4e68550..23b5a9a 100644 --- a/README.md +++ b/README.md @@ -502,7 +502,7 @@ var schema = { var validate = ajv.compile(schema); -validate({ userId: 1, postId: 19 })) +validate({ userId: 1, postId: 19 }) .then(function (data) { console.log('Data is valid', data); // { userId: 1, postId: 19 } })