Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pages/understanding-json-schema/reference/object.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ made up of a number, street name and street type:
// props { "indent": true, "valid": true }
{ "number": 1600, "street_name": "Pennsylvania", "street_type": "Avenue" }
```
// If we provide the number in the wrong type, it is invalid:
If we provide the number in the wrong type, it is invalid:

```json
// props { "indent": true, "valid": false }
Expand Down Expand Up @@ -692,4 +692,4 @@ non-negative integer.
```json
// props { "indent": true, "valid": false }
{ "a": 0, "b": 1, "c": 2, "d": 3 }
```
```
Loading