From 5f41716b5674485fa054c681ccb5a27f1809146c Mon Sep 17 00:00:00 2001 From: Robert Date: Tue, 27 Feb 2024 21:23:13 +0100 Subject: [PATCH] Typo --- src/Artemis.Storage/Migrations/Profile/M0003SystemTextJson.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Artemis.Storage/Migrations/Profile/M0003SystemTextJson.cs b/src/Artemis.Storage/Migrations/Profile/M0003SystemTextJson.cs index cfd984f3d..b447dadae 100644 --- a/src/Artemis.Storage/Migrations/Profile/M0003SystemTextJson.cs +++ b/src/Artemis.Storage/Migrations/Profile/M0003SystemTextJson.cs @@ -54,7 +54,7 @@ private void ConvertToSystemTextJson(JsonObject jsonObject) private void FilterType(JsonObject jsonObject) { - // If there only a type, replace or remove it depending on whether there's a matching JsonDerivedType + // Replace or remove $type depending on whether there's a matching JsonDerivedType // This could be done with reflection but that would mean this migration automatically gains new behaviour over time. JsonNode? type = jsonObject["$type"]; if (type != null)