Fix syntax

This commit is contained in:
tidwall 2021-05-14 09:02:12 -07:00
parent 3c11634522
commit 7a0721334f
2 changed files with 6 additions and 6 deletions

View File

@ -148,10 +148,10 @@ For example, using the following JSON:
{ "a": 4, "b": "0" },
{ "a": 5, "b": 0 },
{ "a": 6, "b": "1" },
{ "a": 7, "b": 1 }
{ "a": 7, "b": 1 },
{ "a": 8, "b": "true" },
{ "a": 9, "b": false }
{ "a": 10, "b": null }
{ "a": 9, "b": false },
{ "a": 10, "b": null },
{ "a": 11 }
]
}

View File

@ -2074,10 +2074,10 @@ func TestBoolConvertQuery(t *testing.T) {
{ "a": 4, "b": "0" },
{ "a": 5, "b": 0 },
{ "a": 6, "b": "1" },
{ "a": 7, "b": 1 }
{ "a": 7, "b": 1 },
{ "a": 8, "b": "true" },
{ "a": 9, "b": false }
{ "a": 10, "b": null }
{ "a": 9, "b": false },
{ "a": 10, "b": null },
{ "a": 11 }
]
}`