From 66f56a0eb2436ee2c24bfdb84e3733883322fbde Mon Sep 17 00:00:00 2001 From: Gaith Hallak Date: Thu, 7 Jul 2022 20:30:07 +0400 Subject: [PATCH] Update docs/sophia_features.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Radosław Rowicki <35342116+radrow@users.noreply.github.com> --- docs/sophia_features.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/docs/sophia_features.md b/docs/sophia_features.md index 1a64037..dc227fc 100644 --- a/docs/sophia_features.md +++ b/docs/sophia_features.md @@ -148,10 +148,9 @@ contract interface Animal = entrypoint sound() = "Cat sound" ``` -Contract interfaces can extend other interfaces, the extended interface has to -declare all the entrypoints from the parent interface, and it can have -additional entrypoints added to it. All the declarations in the extended -interface must match (have the same type) with the declarations from the parent +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. ```