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 961e87d commit 0a6eb81Copy full SHA for 0a6eb81
core/commonMain/src/kotlinx/serialization/descriptors/SerialDescriptors.kt
@@ -71,7 +71,7 @@ public fun buildClassSerialDescriptor(
71
* ```
72
* object LongAsStringSerializer : KSerializer<Long> {
73
* override val descriptor: SerialDescriptor =
74
- * PrimitiveDescriptor("kotlinx.serialization.LongAsStringSerializer", PrimitiveKind.STRING)
+ * PrimitiveSerialDescriptor("kotlinx.serialization.LongAsStringSerializer", PrimitiveKind.STRING)
75
*
76
* override fun serialize(encoder: Encoder, value: Long) {
77
* encoder.encodeString(value.toString())
0 commit comments