summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShreck Ye <ShreckYe@gmail.com>2024-02-06 17:56:11 +0800
committerGitHub <noreply@github.com>2024-02-06 10:56:11 +0100
commit54840e0cbd80784cd19146630c4539444dc95aa9 (patch)
treed868e0fa1a977fdea03150faab050ccfd348bb69
parent8b58c605145f54bba8401bb349911f2d3bd96fc2 (diff)
downloadkotlinx.serialization-54840e0cbd80784cd19146630c4539444dc95aa9.tar.gz
Fix a typo in polymorphism.md (#2562)
-rw-r--r--docs/polymorphism.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/polymorphism.md b/docs/polymorphism.md
index b7ea31f4..2661e04d 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.