From 665b9aa9bd1c6f55f96e0e50d39da9f086271a37 Mon Sep 17 00:00:00 2001 From: Tony Han Date: Thu, 18 Jul 2024 01:20:43 +0800 Subject: [PATCH] Update src/NJsonSchema/JsonPathUtilities.cs Co-authored-by: Rico Suter --- src/NJsonSchema/JsonPathUtilities.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NJsonSchema/JsonPathUtilities.cs b/src/NJsonSchema/JsonPathUtilities.cs index a3b236b9e..6d1bf0dd4 100644 --- a/src/NJsonSchema/JsonPathUtilities.cs +++ b/src/NJsonSchema/JsonPathUtilities.cs @@ -66,7 +66,7 @@ public static class JsonPathUtilities var errorItems = mappings.Where(p => p.Value == null).Select(x => x.Key.GetType().FullName); throw new InvalidOperationException("Could not find the JSON path of a referenced schema: " + string.Join(",", errorItems) + - ",Manually referenced schemas must be added to the " + + ". Manually referenced schemas must be added to the " + "'Definitions' of a parent schema."); }