From 935f0e01fa501976b6e12d670722ff4402ac34cc Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Sat, 2 May 2020 03:02:10 +0300 Subject: [PATCH] fixed docs... Signed-off-by: Alex A. Naanou --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e62e646..7e609bf 100755 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ var A = new object.Constructor('A') In _JavaScript_ constructor `B` inherits from constructor `A` iff -`B.prototype` is _prototype_ of `A.prototype`. So to implement inheritance +`A.prototype` is _prototype_ of `B.prototype`. So to implement inheritance we simply need to _link_ the prototypes of two constructors via `.__proto__`, `Object.create(..)` or other means.