WWW-www.enlightenment.org pushed a commit to branch master. http://git.enlightenment.org/website/www-content.git/commit/?id=3a0e233eaa8e8bb6e1f40ba840fa97c49d6e4357
commit 3a0e233eaa8e8bb6e1f40ba840fa97c49d6e4357 Author: Xavi Artigas <xavierarti...@yahoo.es> Date: Thu Sep 12 07:38:45 2019 -0700 Wiki page eo-multiinherit.md changed with summary [typo] by Xavi Artigas --- pages/develop/tutorials/c/eo-multiinherit.md.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/develop/tutorials/c/eo-multiinherit.md.txt b/pages/develop/tutorials/c/eo-multiinherit.md.txt index b20d64b5e..b18abefbd 100644 --- a/pages/develop/tutorials/c/eo-multiinherit.md.txt +++ b/pages/develop/tutorials/c/eo-multiinherit.md.txt @@ -29,7 +29,7 @@ Eolian (and [other languages](https://en.wikipedia.org/wiki/Mixin#Programming_la *Inherit*, *implement* and *include* all mean *use functionality from a parent class*. Using a different word for each kind of parent class helps keep ambiguity to a minimum. -Interfaces are like classes but they only define methods and contain no implementation. Mixins are classes which contain implementations but they cannot be inherited from, only included. Neither one can instantiated on its own: they are meant to be implemented or included. +Interfaces are like classes but they only define methods and contain no implementation. Mixins are classes which contain implementations but they cannot be inherited from, only included. Neither one can be instantiated on its own: they are meant to be implemented or included. The following steps will clarify these concepts. --