From d2503c7d91f1c315ea809b6283b40f2641fa0800 Mon Sep 17 00:00:00 2001 From: Gareth Jones <3151613+G-Rath@users.noreply.github.com> Date: Wed, 1 Jul 2026 14:28:24 +1200 Subject: [PATCH] fix: remove stray double slash --- pages/understanding-json-schema/reference/object.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +```