From 9c74ae7a32709029398d687f5257dfdbb7bc0266 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Tue, 23 Aug 2016 19:01:39 +0300 Subject: [PATCH] working on docs.. Signed-off-by: Alex A. Naanou --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 20eb2d3..a113983 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ var Base = Actions({ console.log(this.value) }], - times: ['get value', + times: ['value times n', function(n){ this.value *= n @@ -79,6 +79,7 @@ var Base = Actions({ var Extending = Actions(Base, { + // Extend the .times(..) action... times: [function(n){ console.log(this.value, 'times', n, 'is:')