From ddf98b5d7b767c7c17c72538756d944485757ec4 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Sat, 25 Apr 2020 02:03:42 +0300 Subject: [PATCH] more docs... Signed-off-by: Alex A. Naanou --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 997990c..79434ba 100755 --- a/README.md +++ b/README.md @@ -130,8 +130,8 @@ the two contexts relevant to the callable instance: - Internal context (`this`) This always references the instance being called - External context (`context`) - This is the object the instance is called from (`window` or `global` by - default), i.e. _the thing before the dot_ + This is the object the instance is called from, i.e. the call _context_ + (`window` or `global` by default) If the prototype is explicitly defined as a function then it is the user's responsibility to call .__call__(..) method. @@ -158,9 +158,9 @@ Contexts: - Internal context (`this`) References the `.prototype` of the constructor. - External context (`context`) - This is the object the instance is called from (`window` or `global` by - default), i.e. _the thing before the dot_, the same as for function - constructor and `.__call__(..)`. + This is the object the instance is called from, i.e. the call _context_ + (`window` or `global` by default), the same as for function constructor + and `.__call__(..)`. The value `.__new__(..)`returns is used as the instance and gets linked