From 05429d760425f808bf9b02c6aae45ef440af68a7 Mon Sep 17 00:00:00 2001 From: David Michael Gregg Date: Tue, 27 Mar 2018 14:37:02 -0400 Subject: [PATCH] Escaped excess curly braces in syntax error example --- 1-js/08-error-handling/1-try-catch/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/08-error-handling/1-try-catch/article.md b/1-js/08-error-handling/1-try-catch/article.md index 19a1424a94..0f7cf1948b 100644 --- a/1-js/08-error-handling/1-try-catch/article.md +++ b/1-js/08-error-handling/1-try-catch/article.md @@ -83,7 +83,7 @@ It won't work if the code is syntactically wrong, for instance it has unmatched ```js run try { - {{{{{{{{{{{{ + \{\{\{\{\{\{\{\{\{\{\{\{ } catch(e) { alert("The engine can't understand this code, it's invalid"); }