From 3a44f0c9375db1c03a398d4c4abfee0f554ac515 Mon Sep 17 00:00:00 2001 From: daGo Date: Fri, 28 Sep 2018 14:17:35 +0300 Subject: [PATCH] typo: thay -> they --- .../06-constructor-new/1-two-functions-one-object/solution.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/04-object-basics/06-constructor-new/1-two-functions-one-object/solution.md b/1-js/04-object-basics/06-constructor-new/1-two-functions-one-object/solution.md index 79a29b0d..7d8edd7c 100644 --- a/1-js/04-object-basics/06-constructor-new/1-two-functions-one-object/solution.md +++ b/1-js/04-object-basics/06-constructor-new/1-two-functions-one-object/solution.md @@ -2,7 +2,7 @@ Yes, it's possible. If a function returns an object then `new` returns it instead of `this`. -So thay can, for instance, return the same externally defined object `obj`: +So they can, for instance, return the same externally defined object `obj`: ```js run no-beautify let obj = {};