From 54840e0cbd80784cd19146630c4539444dc95aa9 Mon Sep 17 00:00:00 2001 From: Shreck Ye Date: Tue, 6 Feb 2024 17:56:11 +0800 Subject: [PATCH] Fix a typo in polymorphism.md (#2562) --- docs/polymorphism.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/polymorphism.md b/docs/polymorphism.md index b7ea31f4b3..2661e04d6a 100644 --- a/docs/polymorphism.md +++ b/docs/polymorphism.md @@ -542,7 +542,7 @@ fun main() { > You can get the full code [here](../guide/example/example-poly-13.kt). -However, the `Any` is a class and it is not serializable: +However, `Any` is a class and it is not serializable: ```text Exception in thread "main" kotlinx.serialization.SerializationException: Serializer for class 'Any' is not found.