From c667a9223632bc1cebd2c05c2a1cb352a0bc9f78 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Wed, 24 Aug 2016 04:10:56 +0300 Subject: [PATCH] working on docs.. Signed-off-by: Alex A. Naanou --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5293845..730c742 100644 --- a/README.md +++ b/README.md @@ -117,7 +117,7 @@ n The return value will get passed through all the actions in a chain before returning to the action caller. - **Return `this` by default** -- **Organise reuse actions** +- **Organise and reuse actions** Actions organized into action sets can be reused (_mixed-in_) in multiple inheritance chains without any extra work. - **Unified way to document actions** @@ -373,7 +373,7 @@ _action_ is build-in. A trivial example: - ``` + ```javascript actionSet.someAction.chainApply(actionsSet, function(){ // this gets run between someAction's pre and post @@ -387,7 +387,7 @@ _action_ is build-in. implementations (inner) within a single action set can be used as entry points. - ``` + ```javascript // Protocol root action (outer) definition... protocolAction: [function(){}],