diff --git a/core/commonMain/src/kotlinx/serialization/encoding/Decoding.kt b/core/commonMain/src/kotlinx/serialization/encoding/Decoding.kt index b62787c70d..dba5624448 100644 --- a/core/commonMain/src/kotlinx/serialization/encoding/Decoding.kt +++ b/core/commonMain/src/kotlinx/serialization/encoding/Decoding.kt @@ -359,7 +359,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