From 3548471148d1e54df29c64fb6d7ee46b4792a323 Mon Sep 17 00:00:00 2001 From: Charles Lanahan Date: Thu, 14 Mar 2024 10:44:03 -0400 Subject: [PATCH] Added missing brackets to json immutability examples. There were missing brackets in the examples. Thanks to IgorSim on discord for catching. --- spec/spec.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/spec/spec.md b/spec/spec.md index 22ed61d..a4f6949 100644 --- a/spec/spec.md +++ b/spec/spec.md @@ -1395,7 +1395,8 @@ First, replace the value of the `$id` field with a string filled with dummy char "type": "object", "properties": { "full_name": { - "type": "string" + "type": "string" + } } } ``` @@ -1416,7 +1417,8 @@ Third, replace the dummy identifier value with the derived identifier value in t "type": "object", "properties": { "full_name": { - "type": "string" + "type": "string" + } } } ```