diff --git a/1-js/10-error-handling/1-try-catch/article.md b/1-js/10-error-handling/1-try-catch/article.md index bf548373ad..fadd06a6b2 100644 --- a/1-js/10-error-handling/1-try-catch/article.md +++ b/1-js/10-error-handling/1-try-catch/article.md @@ -186,7 +186,7 @@ Usually it's used to decode data received over the network, from the server or a We receive it and call `JSON.parse` like this: ```js run -let json = '{"name":"John", "age": 30}'; // data from the server +let json = '{"name": "John", "age": 30}'; // data from the server *!* let user = JSON.parse(json); // convert the text representation to JS object