From 9c9e7ee3e983db5f5137526f07a66bf4082b3f75 Mon Sep 17 00:00:00 2001 From: Aissaoui Ahmed Date: Wed, 11 Dec 2019 00:18:17 +0100 Subject: [PATCH] Update article.md fix typo intentially -> intentionally --- 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 1000fdd8..f031b416 100644 --- a/1-js/09-classes/02-class-inheritance/article.md +++ b/1-js/09-classes/02-class-inheritance/article.md @@ -499,7 +499,7 @@ In the example below a non-method syntax is used for comparison. `[[HomeObject]] ```js run let animal = { - eat: function() { // intentially writing like this instead of eat() {... + eat: function() { // intentionally writing like this instead of eat() {... // ... } };