From d56c01890304d6522bf6db4b15653e5fdac0f2cc Mon Sep 17 00:00:00 2001 From: Skubie Doo Date: Sun, 26 Mar 2017 09:17:47 -0400 Subject: [PATCH] Use more common word 'convention' over 'agreement' --- 1-js/04-object-basics/06-constructor-new/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/04-object-basics/06-constructor-new/article.md b/1-js/04-object-basics/06-constructor-new/article.md index 77843b49..22fd6c6f 100644 --- a/1-js/04-object-basics/06-constructor-new/article.md +++ b/1-js/04-object-basics/06-constructor-new/article.md @@ -8,7 +8,7 @@ That can be done using constructor functions and the `"new"` operator. ## Constructor function -Constructor functions technically are regular functions. There are two agreements though: +Constructor functions technically are regular functions. There are two conventions though: 1. They are named with capital letter first. 2. They should be executed only with `"new"` operator.