From e56c49c9113fafc5086a52270a3907fadaed7bd1 Mon Sep 17 00:00:00 2001 From: mrchatam <287639636+mrchatam@users.noreply.github.com> Date: Fri, 11 Sep 2026 23:06:12 +0000 Subject: [PATCH] docs: remove duplicate 'the' in ADR 0021 --- docs/decisions/0021-json-serializable-custom-types.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/decisions/0021-json-serializable-custom-types.md b/docs/decisions/0021-json-serializable-custom-types.md index 08e017db2060..5757b7be2238 100644 --- a/docs/decisions/0021-json-serializable-custom-types.md +++ b/docs/decisions/0021-json-serializable-custom-types.md @@ -116,7 +116,7 @@ Required Not required - **Native to Native:** Passing variables from Native to Native **will not** require any serialization or deserialization as the complex type can be passed as-is. -- **Semantic to Semantic:** Passing variables from Semantic to Semantic **will not** require any serialization or deserialization as the the complex type will be passed around using its string representation. +- **Semantic to Semantic:** Passing variables from Semantic to Semantic **will not** require any serialization or deserialization as the complex type will be passed around using its string representation. **2. Only use native serialization methods** This option was originally considered, which would have effectively removed the use of the `TypeConverter`s in favor of a simple `JsonConverter`, but it was pointed out that this may result in lossy conversion between primitive types. For example, when converting from a `float` to an `int`, the primitive may be truncated in a way by the native serialization methods that does not provide an accurate result.