From f78909d2c688b10a91bd08e9e3655adb71542de4 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Wed, 6 May 2020 21:56:24 +0300 Subject: [PATCH] minor fix in docs... Signed-off-by: Alex A. Naanou --- README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index bfdefb4..1385c1f 100755 --- a/README.md +++ b/README.md @@ -328,10 +328,12 @@ var LowLevel = object.Constructor('LowLevel', { ``` -Like _function constructor_ and `.__call__(..)` this also has two contexts, -but the internal context is different -- as it is the job of `.__new__(..)` -to create an instance, at time of call the instance does not exist and `this` -references the `.prototype` object. +Like [_function constructor_ and `.__call__(..)`](#callable-instances) +this also has two contexts, but the internal context is different -- as +it is the job of `.__new__(..)` to create an instance, at time of call +the instance does not exist and `this` references the `.prototype` +object. + The external context is the same as above. Contexts: