@@ -55,7 +55,7 @@ public interface BinaryFormat : SerialFormat {
5555 public fun <T > encodeToByteArray (serializer : SerializationStrategy <T >, value : T ): ByteArray
5656
5757 /* *
58- * Decodes and deserializes the given [byte array][bytes] to to the value of type [T] using the given [deserializer]
58+ * Decodes and deserializes the given [byte array][bytes] to the value of type [T] using the given [deserializer]
5959 */
6060 public fun <T > decodeFromByteArray (deserializer : DeserializationStrategy <T >, bytes : ByteArray ): T
6161}
@@ -79,7 +79,7 @@ public interface StringFormat : SerialFormat {
7979 public fun <T > encodeToString (serializer : SerializationStrategy <T >, value : T ): String
8080
8181 /* *
82- * Decodes and deserializes the given [string] to to the value of type [T] using the given [deserializer]
82+ * Decodes and deserializes the given [string] to the value of type [T] using the given [deserializer]
8383 */
8484 public fun <T > decodeFromString (deserializer : DeserializationStrategy <T >, string : String ): T
8585}
@@ -92,7 +92,7 @@ public inline fun <reified T> StringFormat.encodeToString(value: T): String =
9292 encodeToString(serializersModule.serializer(), value)
9393
9494/* *
95- * Decodes and deserializes the given [string] to to the value of type [T] using deserializer
95+ * Decodes and deserializes the given [string] to the value of type [T] using deserializer
9696 * retrieved from the reified type parameter.
9797 */
9898@OptIn(ExperimentalSerializationApi ::class )
@@ -153,7 +153,7 @@ public inline fun <reified T> BinaryFormat.encodeToByteArray(value: T): ByteArra
153153 encodeToByteArray(serializersModule.serializer(), value)
154154
155155/* *
156- * Decodes and deserializes the given [byte array][bytes] to to the value of type [T] using deserializer
156+ * Decodes and deserializes the given [byte array][bytes] to the value of type [T] using deserializer
157157 * retrieved from the reified type parameter.
158158 */
159159@OptIn(ExperimentalSerializationApi ::class )
0 commit comments