From 858151e53fd58824e0bb75ed3191af86c2230ecd Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Thu, 7 May 2020 03:41:05 +0300 Subject: [PATCH] minor fix... 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 964f9ea..3cb8891 100755 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ several advantages: different"_ ways to do things, - _Transparently_ based on JavaScript's prototypical inheritance model, - Produces fully introspectable constructors/instances, -- Does not try to emulate constructs foreign JavaScript (i.e. classes), +- Does not try to emulate constructs foreign to JavaScript (i.e. classes), - Granular 2-stage instance construction and initialization (a-la _Python's_ `.__new__(..)` and `.__init__(..)` methods), - Simple way to define callable instances (including a-la _Python's_