Skip to content

Commit feb598e

Browse files
committed
Correct some single quotes in JSON
1 parent 4b9962c commit feb598e

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -357,27 +357,27 @@ const client = new SlicingDice({
357357
}, usesTestEndpoint = true);
358358

359359
query = {
360-
'corolla-or-fit': [
360+
"corolla-or-fit": [
361361
{
362-
'car-model': {
363-
'equals': 'toyota corolla'
362+
"car-model": {
363+
"equals": "toyota corolla"
364364
}
365365
},
366-
'or',
366+
"or",
367367
{
368-
'car-model': {
369-
'equals': 'honda fit'
368+
"car-model": {
369+
"equals": "honda fit"
370370
}
371371
},
372372
],
373-
'ford-ka': [
373+
"ford-ka": [
374374
{
375-
'car-model': {
376-
'equals': 'ford ka'
375+
"car-model": {
376+
"equals": "ford ka"
377377
}
378378
}
379379
],
380-
'bypass-cache': false
380+
"bypass-cache": false
381381
};
382382

383383
client.countEntity(query).then((resp) => {

0 commit comments

Comments
 (0)