From 84d0a575f2ef6b38d19a93f45d2546938fa31d4d Mon Sep 17 00:00:00 2001 From: oldmud0 Date: Wed, 15 Dec 2021 00:18:01 -0600 Subject: [PATCH] Fix minor typo in json-schema.md (#1843) --- docs/json-schema.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/json-schema.md b/docs/json-schema.md index 5616e24aa..6b6231020 100644 --- a/docs/json-schema.md +++ b/docs/json-schema.md @@ -1160,7 +1160,7 @@ If the data is invalid against the sub-schema in `if` keyword, then the validati then: {multipleOf: 100}, else: { if: {minimum: 10}, - then": {multipleOf: 10} + then: {multipleOf: 10} } } ```