Update the documentation and changelog to include polymorphism #887

Merged
ghallak merged 10 commits from ghallak/polymorphism-docs into master 2022-07-26 01:47:17 +09:00
Showing only changes of commit 2dd461b2b0 - Show all commits

View File

@ -150,7 +150,7 @@ contract interface Animal =
Contract interfaces can extend other interfaces. An extended interface has to
declare all entrypoints from every parent interface. All the declarations in the extended
interface must have the same type as the declarations from the parent
interface must have types compatible with the declarations from the parent
interface.
```