Merge pull request #571 from F1NYA/patch-1

Superfluous bracket in README.md
master
Evgeny Poberezkin 2017-09-24 10:40:14 +01:00 committed by GitHub
commit 27a009c2cf
1 changed files with 1 additions and 1 deletions

View File

@ -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 }
})