From 9f5ff214019a27f108009440d1662b8aac56479a Mon Sep 17 00:00:00 2001 From: Aadith PM Date: Sun, 18 Jun 2017 19:59:47 +0530 Subject: [PATCH] Edit typo --- 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 c314ccf5..b49de5cd 100644 --- a/1-js/04-object-basics/06-constructor-new/article.md +++ b/1-js/04-object-basics/06-constructor-new/article.md @@ -89,7 +89,7 @@ The constructor can't be called again, because it is not saved anywhere, just cr Inside a function, we can check whether it was called with `new` or without it, using a special `new.target` property. -It is empty for regulsar calls and equals the function if called with `new`: +It is empty for regular calls and equals the function if called with `new`: ```js run function User() {