Skip to content

Commit e41097e

Browse files
authored
Fix missing backticks in MapEntrySerializer documentation (#2373)
1 parent e3bcb64 commit e41097e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/commonMain/src/kotlinx/serialization/builtins/BuiltinSerializers.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public fun <K, V> PairSerializer(
3434
* Returns built-in serializer for [Map.Entry].
3535
* Resulting serializer represents entry as a structure with a single key-value pair.
3636
* E.g. `Pair(1, 2)` and `Map.Entry(1, 2)` will be serialized to JSON as
37-
* `{"first": 1, "second": 2}` and {"1": 2} respectively.
37+
* `{"first": 1, "second": 2}` and `{"1": 2}` respectively.
3838
*/
3939
public fun <K, V> MapEntrySerializer(
4040
keySerializer: KSerializer<K>,

0 commit comments

Comments
 (0)