From 7ce700872b4dd3fd21ba228456f6ec08b9a0e020 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Tue, 27 Sep 2016 16:02:35 +0300 Subject: [PATCH] added note to docs... Signed-off-by: Alex A. Naanou --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 4da1f25..0f62d72 100644 --- a/README.md +++ b/README.md @@ -151,6 +151,9 @@ n usually copy references to actions to the target object, this is done to go around the lack of multiple inheritance support in JavaScript and to enable clean action set reuse. +- `mix(..)` _mixes_ actions in order, i.e. later overloads the former, + this is not the same as the traditional multiple inheritance order in + languages such as Python where the order is reversed.