diff --git a/pages/understanding-json-schema/reference/object.md b/pages/understanding-json-schema/reference/object.md index b9e337386..f62e64f1f 100644 --- a/pages/understanding-json-schema/reference/object.md +++ b/pages/understanding-json-schema/reference/object.md @@ -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 } @@ -692,4 +692,4 @@ non-negative integer. ```json // props { "indent": true, "valid": false } { "a": 0, "b": 1, "c": 2, "d": 3 } -``` \ No newline at end of file +```