From fa54132b48e6580bf990ab532ac4ce6c6b35ceef Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Thu, 23 Apr 2020 19:07:17 +0300 Subject: [PATCH] updated docs... Signed-off-by: Alex A. Naanou --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7b3aa35..a432fc4 100755 --- a/README.md +++ b/README.md @@ -461,7 +461,7 @@ in the following order: really necessary. -#### 3. `.__call__` action / handler +#### 3. `.__actioncall__` action / handler This action if defined is called for every action called. It behaves like any other action but with a fixed signature, it always receives @@ -471,7 +471,7 @@ the second arguments, and as normal a result on the post phase. **Notes:** - it is not necessary to define the actual action, binding to a handler will also work. -- one should not call actions directly from within a __call__ +- one should not call actions directly from within a __actioncall__ handler as that will result in infinite recursion. - one should use this with extreme care as this will introduce an overhead on all the actions if not done carefully.