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 = {};