From a66b5e1e7823f613e52f7f503d5e82d73fbbfe9d Mon Sep 17 00:00:00 2001 From: Philip Wedemann <22521688+hfhbd@users.noreply.github.com> Date: Mon, 19 Aug 2024 22:16:50 +0200 Subject: [PATCH] Fix code snippet mark --- core/commonMain/src/kotlinx/serialization/encoding/Decoding.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/commonMain/src/kotlinx/serialization/encoding/Decoding.kt b/core/commonMain/src/kotlinx/serialization/encoding/Decoding.kt index dc4aa2ab9e..f7d87aa20f 100644 --- a/core/commonMain/src/kotlinx/serialization/encoding/Decoding.kt +++ b/core/commonMain/src/kotlinx/serialization/encoding/Decoding.kt @@ -358,7 +358,7 @@ public interface CompositeDecoder { * Sequential decoding is a performance optimization for formats with strictly ordered schema, * usually binary ones. Regular formats such as JSON or ProtoBuf cannot use this optimization, * because e.g. in the latter example, the same data can be represented both as - * `{"i": 1, "d": 1.0}`"` and `{"d": 1.0, "i": 1}` (thus, unordered). + * `{"i": 1, "d": 1.0}`" and `{"d": 1.0, "i": 1}` (thus, unordered). */ @ExperimentalSerializationApi public fun decodeSequentially(): Boolean = false