From a95a2f5725c4f7f5984ac14d0acfd47d082210a7 Mon Sep 17 00:00:00 2001 From: paroche <46547072+paroche@users.noreply.github.com> Date: Thu, 12 Sep 2019 17:24:05 -0600 Subject: [PATCH] Update solution.md Wording change. (I actually like the original wording "does not give understanding" -- very concise, and communicates clearly. It's just a bit non-standard in usage). --- .../04-object-methods/2-check-syntax/solution.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/04-object-basics/04-object-methods/2-check-syntax/solution.md b/1-js/04-object-basics/04-object-methods/2-check-syntax/solution.md index 5589b655..0534202a 100644 --- a/1-js/04-object-basics/04-object-methods/2-check-syntax/solution.md +++ b/1-js/04-object-basics/04-object-methods/2-check-syntax/solution.md @@ -11,7 +11,7 @@ let user = { (user.go)() // error! ``` -The error message in most browsers does not give understanding what went wrong. +The error message in most browsers does not give us much of a clue about what went wrong. **The error appears because a semicolon is missing after `user = {...}`.**