We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c645f52 commit f17c83fCopy full SHA for f17c83f
core/commonMain/src/kotlinx/serialization/encoding/Decoding.kt
@@ -359,7 +359,7 @@ public interface CompositeDecoder {
359
* Sequential decoding is a performance optimization for formats with strictly ordered schema,
360
* usually binary ones. Regular formats such as JSON or ProtoBuf cannot use this optimization,
361
* because e.g. in the latter example, the same data can be represented both as
362
- * `{"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).
363
*/
364
@ExperimentalSerializationApi
365
public fun decodeSequentially(): Boolean = false
0 commit comments