summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDimitri Saridakis <dimitri.saridakis@gmail.com>2021-10-19 14:53:13 +0100
committerGitHub <noreply@github.com>2021-10-19 16:53:13 +0300
commitb746ba821ddd10fa58cd8f92db49be97cc852e67 (patch)
tree975c7730ecd732ac2e6e52752910344b531ac58a /docs
parent1814a92b871dac128db67c765c9df2b6be8405c7 (diff)
downloadkotlinx.serialization-b746ba821ddd10fa58cd8f92db49be97cc852e67.tar.gz
docs(polymorphism): fixing a typo (#1731)
Diffstat (limited to 'docs')
-rw-r--r--docs/polymorphism.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/polymorphism.md b/docs/polymorphism.md
index 7d194f2a..c54bcb82 100644
--- a/docs/polymorphism.md
+++ b/docs/polymorphism.md
@@ -367,7 +367,7 @@ We can update the previous example and turn `Project` superclass into an interfa
mark an interface itself as `@Serializable`. No problem. Interfaces cannot have instances by themselves.
Interfaces can only be represented by instances of their derived classes. Interfaces are used in the Kotlin language to enable polymorphism,
so all interfaces are considered to be implicitly serializable with the [PolymorphicSerializer]
-strategy. We just need to mark thier implementing classes as `@Serializable` and register them.
+strategy. We just need to mark their implementing classes as `@Serializable` and register them.
<!--- INCLUDE
import kotlinx.serialization.modules.*