From e4c57071d65a1d0e129a85eb032381e152270bc2 Mon Sep 17 00:00:00 2001 From: Itai Leshem Date: Tue, 2 Nov 2021 19:57:23 +0200 Subject: [PATCH] Update article.md --- 1-js/09-classes/02-class-inheritance/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/09-classes/02-class-inheritance/article.md b/1-js/09-classes/02-class-inheritance/article.md index fe357cfe..460b9dd1 100644 --- a/1-js/09-classes/02-class-inheritance/article.md +++ b/1-js/09-classes/02-class-inheritance/article.md @@ -362,7 +362,7 @@ And that's what we naturally expect. When the parent constructor is called in th Why is there a difference? -Well, the reason is in the field initialization order. The class field is initialized: +Well, the reason is the field initialization order. The class field is initialized: - Before constructor for the base class (that doesn't extend anything), - Immediately after `super()` for the derived class.